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

Owen Leonard oleonard at athenscounty.lib.oh.us
Thu Jan 5 23:01:56 CET 2006


CVSROOT:	/sources/koha
Module name:	koha
Branch: 	rel_2_2
Changes by:	Owen Leonard <oleonard at savannah.gnu.org>	06/01/05 22:01:56

Modified files:
	koha-tmpl/intranet-tmpl/npl/en: overdue.tmpl 

Log message:
	Synching with default template

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

Patches:
Index: koha/koha-tmpl/intranet-tmpl/npl/en/overdue.tmpl
diff -u /dev/null koha/koha-tmpl/intranet-tmpl/npl/en/overdue.tmpl:1.1.2.1
--- /dev/null	Thu Jan  5 22:01:56 2006
+++ koha/koha-tmpl/intranet-tmpl/npl/en/overdue.tmpl	Thu Jan  5 22:01:56 2006
@@ -0,0 +1,66 @@
+<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Koha -- Overdues<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
+<!-- TMPL_INCLUDE NAME="masthead.inc" -->
+<!-- TMPL_INCLUDE NAME="intranet-nav.inc" -->
+
+<div id="main"><!-- the site -->
+
+<h2>Items Overdue as of <!-- TMPL_VAR NAME="todaysdate" --></h2>
+
+	<form method="post" action="/cgi-bin/koha/overdue.pl">
+<div class="data">	<table>
+	<caption>Filter Results:</caption>
+	 	<tr><th scope="row"><label for="borname">Name or cardnumber :</label></th><td><input type="text" name="borname" id="borname" value="<!--TMPL_VAR Name="borname"-->"></td></tr>
+		<tr><th scope="row"><label for="borcat">Borrower categorycode :</label></th><td><select name="borcat" id="borcat"><option value="">Any</option>
+			<!-- TMPL_LOOP name="borcatloop" -->
+				<option value="<!-- TMPL_VAR name="value" -->"<!-- TMPL_IF name="selected" --> selected="selected"<!-- /TMPL_IF -->><!-- TMPL_VAR name="catname" --></option>
+			<!-- /TMPL_LOOP -->
+			</select></td></tr>
+		<tr><th scope="row"><label for="">Borrower Flags :</label></th><td><!--TMPL_VAR Name="CGIflags" --></td></tr>
+	  	<tr><th scope="row"><label for="itemtype">Itemtype :</label></th><td><select name="itemtype" id="itemtype"><option value="">Any</option>
+			<!-- TMPL_LOOP name="itemtypeloop" -->
+				<option value="<!-- TMPL_VAR name="value" -->"<!-- TMPL_IF name="selected" --> selected="selected"<!-- /TMPL_IF -->><!-- TMPL_VAR name="itemtypename" --></option>
+			<!-- /TMPL_LOOP -->
+			</select></td></tr>
+		<tr><th scope="row"><label for="branch">Branch :</label></th><td><select name="branch" id="branch">
+				<option value="">Any</option>
+			<!-- TMPL_LOOP name="branchloop" -->
+				<option value="<!-- TMPL_VAR name="value" -->"<!-- TMPL_IF name="selected" -->selected="selected"<!-- /TMPL_IF -->><!-- TMPL_VAR name="branchname" --></option>
+			<!-- /TMPL_LOOP -->
+			</select></td></tr>
+		<tr><th scope="row"><label for="showall">Show any items currently issued:</label></th><td><input type="checkbox" name="showall" id="showall" value="show" <!--TMPL_IF Name="showall"--> checked="checked"<!--/TMPL_IF-->></td></tr>
+		<tr><th scope="row"><label for="order">Sort By</label></th><td><select name="order" id="order">
+<option<!--TMPL_UNLESS name="order"--> selected="selected"<!-- /TMPL_UNLESS--> value="">Due Date</option>
+<option<!--TMPL_IF name="order"--> selected="selected"<!-- /TMPL_IF--> value="borrower">Borrower</option>
+</select></td></tr>
+</table></div>
+			<input type="submit" class="submit" value="Apply Filter" class="button reports">
+	</form>
+	</p>
+
+<table>
+	<tr>
+		<th>Due Date</th>
+		<th>Patron</th>
+		<th>Phone</th>
+		<th>Title</th>
+		<th>Author</th>
+	</tr>
+
+  <!-- TMPL_LOOP NAME="overdueloop" -->
+    <tr>
+      <td><!-- TMPL_VAR NAME="duedate" --></td>
+    <!-- TMPL_IF NAME="email" -->
+      <td><a href="mailto:<!-- TMPL_VAR NAME="email" -->?subject=Overdue: <!-- TMPL_VAR NAME="title" -->"><!-- TMPL_VAR NAME="name" --></a></td>
+    <!-- TMPL_ELSE -->
+      <td><!-- TMPL_VAR NAME="name" --></td>
+    <!-- /TMPL_IF -->
+      <td><!-- TMPL_VAR NAME="phone" --></td>
+      <td><!-- TMPL_VAR NAME="title" --></td>
+      <td><!-- TMPL_VAR NAME="author" --></td>
+    </tr>
+  <!-- /TMPL_LOOP -->
+</table>
+
+</div>
+
+<!-- TMPL_INCLUDE name="intranet-bottom.inc" -->
\ No newline at end of file





More information about the Koha-cvs mailing list