[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/catalogue detail
From: |
Paul POULAIN |
Subject: |
[Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/catalogue detail.tmpl,1.17.2.2,1.17.2.3 |
Date: |
Tue, 01 Mar 2005 05:20:30 -0800 |
Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/catalogue
In directory
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16277/koha-tmpl/intranet-tmpl/default/en/catalogue
Modified Files:
Tag: rel_2_2
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: detail.tmpl
===================================================================
RCS file:
/cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/catalogue/detail.tmpl,v
retrieving revision 1.17.2.2
retrieving revision 1.17.2.3
diff -C2 -r1.17.2.2 -r1.17.2.3
*** detail.tmpl 17 Feb 2005 12:48:04 -0000 1.17.2.2
--- detail.tmpl 1 Mar 2005 13:20:14 -0000 1.17.2.3
***************
*** 61,68 ****
<div id="bloc25">
<h2 class="catalogue">Items</h2>
! <table class="small">
<tr>
<th class="catalogue">Item type</th>
<th class="catalogue">Location</th>
<th class="catalogue">Date Due</th>
<th class="catalogue">Last seen</th>
--- 61,69 ----
<div id="bloc25">
<h2 class="catalogue">Items</h2>
! <table>
<tr>
<th class="catalogue">Item type</th>
<th class="catalogue">Location</th>
+ <th class="catalogue">Status</th>
<th class="catalogue">Date Due</th>
<th class="catalogue">Last seen</th>
***************
*** 74,77 ****
--- 75,85 ----
<td><!-- TMPL_VAR NAME="description" --></td>
<td><!-- TMPL_VAR NAME="branchname" --> <!--
TMPL_IF NAME="itemcallnumber" --> <!-- TMPL_VAR NAME="itemcallnumber" --><!--
/TMPL_IF --></td>
+ <td>
+ <!-- TMPL_IF name="datedue" -->
+ On issue to <a
href="/cgi-bin/koha/members/moremember.pl?bornum=<!-- TMPL_VAR
NAME="borrowernumber" -->"><!-- TMPL_VAR NAME="cardnumber" --></a>
+ <!-- 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/intranet-tmpl/default/en/catalogue detail.tmpl,1.17.2.2,1.17.2.3,
Paul POULAIN <=