8d32567210
Signed-off-by: Chris Cormack <crc@liblime.com> Signed-off-by: Joshua Ferraro <jmf@liblime.com>
90 lines
3.5 KiB
Cheetah
90 lines
3.5 KiB
Cheetah
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
|
|
<title>Koha › Circulation › Items Overdue as of <!-- TMPL_VAR NAME="todaysdate" --></title>
|
|
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
|
|
</head>
|
|
<body>
|
|
<!-- TMPL_INCLUDE NAME="header.inc" -->
|
|
<!-- TMPL_INCLUDE NAME="circ-search.inc" -->
|
|
|
|
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> &rsaquo Circulation Reports &rsaquo Overdues as of <!-- TMPL_VAR NAME="todaysdate" --></div>
|
|
|
|
<div id="doc3" class="yui-t2">
|
|
|
|
<div id="bd">
|
|
<div id="yui-main">
|
|
<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>
|
|
<tr>
|
|
<th>Due Date</th>
|
|
<th>Patron</th>
|
|
<th>Title</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> (<!-- TMPL_VAR NAME="phone" -->)</td>
|
|
<!-- TMPL_ELSE -->
|
|
<td><!-- TMPL_VAR NAME="name" --> (<!-- TMPL_VAR NAME="phone" -->)</td>
|
|
<!-- /TMPL_IF -->
|
|
<td>
|
|
<p><!-- TMPL_VAR NAME="title" --></p>
|
|
<p><!-- TMPL_VAR NAME="author" --></p>
|
|
</td>
|
|
</tr>
|
|
<!-- /TMPL_LOOP -->
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="yui-b">
|
|
<!-- TMPL_INCLUDE NAME="circ-menu.inc" -->
|
|
</div>
|
|
</div>
|
|
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
|