[Koha-cvs] koha/koha-tmpl/intranet-tmpl/npl/en/circ circul... [rel_2_2]

Joshua Ferraro jmf at kados.org
Mon May 22 14:12:29 CEST 2006


CVSROOT:	/sources/koha
Module name:	koha
Branch: 	rel_2_2
Changes by:	Joshua Ferraro <kados at savannah.gnu.org>	06/05/22 12:12:29

Modified files:
	koha-tmpl/intranet-tmpl/npl/en/circ: circulation.tmpl 

Log message:
	adding 'return' column to circulation screen as requested by WIPO. If this
	is a problem for other libraries we should create a syspref.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha/koha-tmpl/intranet-tmpl/npl/en/circ/circulation.tmpl.diff?only_with_tag=rel_2_2&tr1=1.6.2.17&tr2=1.6.2.18&r1=text&r2=text

Patches:
Index: koha/koha-tmpl/intranet-tmpl/npl/en/circ/circulation.tmpl
diff -u koha/koha-tmpl/intranet-tmpl/npl/en/circ/circulation.tmpl:1.6.2.17 koha/koha-tmpl/intranet-tmpl/npl/en/circ/circulation.tmpl:1.6.2.18
--- koha/koha-tmpl/intranet-tmpl/npl/en/circ/circulation.tmpl:1.6.2.17	Mon Apr 10 18:18:11 2006
+++ koha/koha-tmpl/intranet-tmpl/npl/en/circ/circulation.tmpl	Mon May 22 12:12:29 2006
@@ -283,6 +283,7 @@
 			<th>Call No</th>
 			<th>Barcode</th>
 			<th>Renew?</th>
+			<th>Return?</th>
 		</tr>
 	<!-- TMPL_IF NAME="todayissues" -->
 		<!-- TMPL_LOOP NAME="todayissues" -->
@@ -293,12 +294,13 @@
 			<td><!-- TMPL_VAR NAME="classification" --></td>
 			<td><!-- TMPL_VAR NAME="barcode" --></td>
 			<td><input type="checkbox" name="renew_item_<!-- TMPL_VAR NAME="itemnumber" -->" value="y"<!-- TMPL_IF NAME="od" --> checked="checked"<!-- /TMPL_IF --> /></td>
+			<td><a href="/cgi-bin/koha/circ/returns.pl?barcode=<!-- TMPL_VAR name="barcode" -->">Return</a></td>
 		</tr>
 		<!-- /TMPL_LOOP -->
 <!-- /TMPL_IF -->
 
 <!-- TMPL_IF NAME="previssues" -->
-		<tr><th colspan="6"><a name="previous" id="previous">Previous Issues</a></th></tr>
+		<tr><th colspan="7"><a name="previous" id="previous">Previous Issues</a></th></tr>
 		<!-- TMPL_LOOP NAME="previssues" -->
 			<!-- TMPL_IF NAME="togglecolor" --><tr><!-- TMPL_ELSE --><tr class="highlight"><!-- /TMPL_IF -->
 			<td><!-- TMPL_IF NAME="od" --><span class="error"><!-- /TMPL_IF --><!-- TMPL_VAR NAME="dd" --><!-- TMPL_IF NAME="od" --></span><!-- /TMPL_IF --></td>
@@ -306,7 +308,8 @@
 			<td><!-- TMPL_VAR NAME="author" --></td>
 			<td><!-- TMPL_VAR NAME="classification" --></td>
 			<td><!-- TMPL_VAR NAME="barcode" --></td>
-			<td><input type="checkbox" name="renew_item_<!-- TMPL_VAR NAME="itemnumber" -->" value="y"<!-- TMPL_IF NAME="od" --> checked="checked"<!-- /TMPL_IF --> /></td></tr>
+			<td><input type="checkbox" name="renew_item_<!-- TMPL_VAR NAME="itemnumber" -->" value="y"<!-- TMPL_IF NAME="od" --> checked="checked"<!-- /TMPL_IF --> /></td>
+			<td><a href="/cgi-bin/koha/circ/returns.pl?barcode=<!-- TMPL_VAR name="barcode" -->">Return</a></td></tr>
 		<!-- /TMPL_LOOP -->
 	</table>
 	





More information about the Koha-cvs mailing list