Reverting changes which were committed by mistake. Tried moving the filter into the...
authorOwen Leonard <oleonard@myacpl.org>
Fri, 14 Dec 2007 16:42:52 +0000 (10:42 -0600)
committerJoshua Ferraro <jmf@liblime.com>
Fri, 14 Dec 2007 16:47:23 +0000 (10:47 -0600)
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tmpl

index d5a4e4d..9885b4b 100644 (file)
        <div class="yui-b">
 
 <h2>Items Overdue as of <!-- TMPL_VAR NAME="todaysdate" --></h2>
+  
+  <form method="post" action="/cgi-bin/koha/circ/overdue.pl">
+  <div id="filters">Filter on :<br />
+    Name or cardnumber :<input type="text" name="borname" value="<!--TMPL_VAR Name="borname"-->">
+    Patron category :<select name="borcat" id="borcat"><option value="">Any</option>
+      <!-- TMPL_LOOP name="borcatloop" -->
+        <option value="<!-- TMPL_VAR name="value" -->" <!-- TMPL_IF name="selected" -->selected<!-- /TMPL_IF -->><!-- TMPL_VAR name="catname" --></option>
+      <!-- /TMPL_LOOP -->
+      </select>
+      
+      
+    Patron flags :<!--TMPL_VAR Name="CGIflags" --><br/>
+      Item type :<select name="itemtype" id="itemtype"><option value="">Any</option>
+      <!-- TMPL_LOOP name="itemtypeloop" -->
+        <option value="<!-- TMPL_VAR name="value" -->" <!-- TMPL_IF name="selected" -->selected<!-- /TMPL_IF -->><!-- TMPL_VAR name="itemtypename" --></option>
+      <!-- /TMPL_LOOP -->
+      </select>
+    
+    
+    Library :<select name="branch" id="branch">
+        <option value="">Any</option>
+      <!-- TMPL_LOOP name="branchloop" -->
+        <option value="<!-- TMPL_VAR name="value" -->" <!-- TMPL_IF name="selected" -->selected<!-- /TMPL_IF -->><!-- TMPL_VAR name="branchname" --></option>
+      <!-- /TMPL_LOOP -->
+      </select><br/>
+    Show any items currently issued:<input type="checkbox" name="showall" value="show" <!--TMPL_IF Name="showall"-->checked="checked"<!--/TMPL_IF-->>
+    
+    
+    Sort By<select name="order" tabindex="0" size="1" id="order">
+<option <!--TMPL_UNLESS Name"order"-->selected<!-- /TMPL_UNLESS--> value="">Due Date</option>
+<option  value="borrower">Patron</option>
+<option  value="title">Title</option>
+<option  value="barcode">Barcode</option>
+<option  value="date_due desc">Due Date desc</option>
+<option  value="borrower desc">Patron desc</option>
+<option  value="title desc">Title desc</option>
+<option  value="barcode desc">Barcode</option>
+</select>
+      <input TYPE="submit" value="Apply Filter" class="button reports">
+   </div>   
+  </form>
 
 <div class="searchresults">
 <table>
@@ -43,7 +84,7 @@
 </div>
 </div>
 <div class="yui-b">
-<!-- TMPL_INCLUDE NAME="overdue-menu.inc" -->
+<!-- TMPL_INCLUDE NAME="circ-menu.inc" -->
 </div>
 </div>
 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->