[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/css/en opac-detail.tmpl,1.15.2.
From: |
Paul POULAIN |
Subject: |
[Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/css/en opac-detail.tmpl,1.15.2.5,1.15.2.6 |
Date: |
Tue, 01 Mar 2005 05:15:27 -0800 |
Update of /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en
In directory
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14454/koha-tmpl/opac-tmpl/css/en
Modified Files:
Tag: rel_2_2
opac-detail.tmpl
Log Message:
item status (opac & librarian interfaces) The item status has been improved :
It now can be :
- on order (= item has been ordered, but not yet arrived at the library)
- not for loan : if the "notforloan" field is mapped to an authorised value
list, the right value is shown. Thus, an item can be "lost" or "being
repaired", or whatever you put in the authorised values list. (reminder : the
"notforloan" field, when 0 means 'ok, book can be issued', and all other values
means 'nok, book can't be issued' (whatever the reason, that can be in the
authorised value table)
Index: opac-detail.tmpl
===================================================================
RCS file: /cvsroot/koha/koha/koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl,v
retrieving revision 1.15.2.5
retrieving revision 1.15.2.6
diff -C2 -r1.15.2.5 -r1.15.2.6
*** opac-detail.tmpl 17 Feb 2005 12:51:13 -0000 1.15.2.5
--- opac-detail.tmpl 1 Mar 2005 13:15:25 -0000 1.15.2.6
***************
*** 119,122 ****
--- 119,123 ----
<tr>
<th>location</th>
+ <th>status</th>
<th>date Due</th>
<th>last Seen</th>
***************
*** 125,129 ****
<!-- TMPL_LOOP NAME="ITEM_RESULTS" -->
<tr>
! <td><!-- TMPL_VAR NAME="branchname" --> <!--
TMPL_VAR NAME="location" --> <!-- TMPL_IF name="itemcallnumber" -->(<!--
TMPL_VAR NAME="itemcallnumber" -->)<!-- /TMPL_IF --></td>
<td><!-- TMPL_VAR NAME="datedue" --></td>
<td><!-- TMPL_VAR NAME="datelastseen" --></td>
--- 126,142 ----
<!-- TMPL_LOOP NAME="ITEM_RESULTS" -->
<tr>
! <td>
! <!-- TMPL_VAR NAME="branchname" -->
<!-- TMPL_VAR NAME="location" -->
! <!-- TMPL_IF name="itemcallnumber" -->
! (<!-- TMPL_VAR
NAME="itemcallnumber" -->)
! <!-- /TMPL_IF -->
! </td>
! <td>
! <!-- TMPL_IF name="datedue" -->
! On loan
! <!-- TMPL_ELSE -->
! <!-- TMPL_VAR name="notforloan"
-->
! <!-- /TMPL_IF -->
! </td>
<td><!-- TMPL_VAR NAME="datedue" --></td>
<td><!-- TMPL_VAR NAME="datelastseen" --></td>
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/css/en opac-detail.tmpl,1.15.2.5,1.15.2.6,
Paul POULAIN <=