[Koha-cvs] koha/koha-tmpl/intranet-tmpl/ccfls/en/circ retu... [dev_week]

Kyle Hall kyle.m.hall at gmail.com
Thu Mar 29 18:03:43 CEST 2007


CVSROOT:	/sources/koha
Module name:	koha
Branch:		dev_week
Changes by:	Kyle Hall <kylemhall>	07/03/29 16:03:43

Modified files:
	koha-tmpl/intranet-tmpl/ccfls/en/circ: returns.tmpl 

Log message:
	Added itemnotes column to the returned books table, but it doesn't work

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/ccfls/en/circ/returns.tmpl?cvsroot=koha&only_with_tag=dev_week&r1=1.1.2.1.2.4&r2=1.1.2.1.2.5

Patches:
Index: returns.tmpl
===================================================================
RCS file: /sources/koha/koha/koha-tmpl/intranet-tmpl/ccfls/en/circ/Attic/returns.tmpl,v
retrieving revision 1.1.2.1.2.4
retrieving revision 1.1.2.1.2.5
diff -u -b -r1.1.2.1.2.4 -r1.1.2.1.2.5
--- returns.tmpl	18 Jan 2007 13:49:10 -0000	1.1.2.1.2.4
+++ returns.tmpl	29 Mar 2007 16:03:42 -0000	1.1.2.1.2.5
@@ -171,12 +171,20 @@
 <div class="table">
 		<table>
 		<caption>Returned Items</caption>
-		<tr><th>Due Date</th><th>Bar Code</th><th>Title</th><th>Author</th><th>Type</th><th>Patron</th></tr>
+		<tr>
+                  <th>Due Date</th>
+                  <th>Bar Code</th>
+                  <th>Title</th>
+                  <th>Author</th>
+                  <th>Type</th>
+                  <th>Patron</th>
+                  <th>Notes</th>
+                </tr>
 		<!-- TMPL_LOOP Name="riloop" -->
-			<tr><td><!-- TMPL_IF Name="duedate" --><!-- TMPL_IF Name="early" --><span class="error"><!-- /TMPL_IF --><!-- TMPL_VAR NAME="duedate" --><!-- TMPL_IF Name="early" --></span><!-- /TMPL_IF --><!-- TMPL_ELSE -->Not Checked Out.<!-- /TMPL_IF --></td>
+			<tr><td><!-- TMPL_IF Name="duedate" --><!-- TMPL_IF Name="early" --><span class="error"><!-- /TMPL_IF --><!-- TMPL_VAR NAME="duedate" --><!-- TMPL_IF Name="early" --></span><!-- /TMPL_IF --><!-- TMPL_ELSE -->Not on Checked Out.<!-- /TMPL_IF --></td>
 			<td>
 			<a href="/cgi-bin/koha/detail.pl?bib=<!-- TMPL_VAR Name="itembiblionumber" -->&type=intra"><!-- TMPL_VAR Name="barcode" --></a></td>
-			<td><!-- TMPL_VAR Name="itemtitle" --></td>
+			<td><!-- TMPL_VAR Name="itemtitle" --><br /></td>
 			<td><!-- TMPL_VAR Name="itemauthor" --></td>
 			<td><!-- TMPL_VAR Name="ccode" --></td>
 			<td>
@@ -187,7 +195,9 @@
 			<!-- TMPL_ELSE -->
 			Not on Checked Out.
 			<!-- /TMPL_IF -->
-			</td></tr>
+			</td>
+                        <td><i><!-- TMPL_VAR name="itemnotes" --></i></td>
+                        </tr>
 		<!-- /TMPL_LOOP -->
 		</table>
 		</div>





More information about the Koha-cvs mailing list