Koha/koha-tmpl/intranet-tmpl/default/en/overdue.tmpl
2004-06-17 08:23:26 +00:00

29 lines
914 B
Cheetah

<!-- TMPL_INCLUDE NAME="reports-top.inc" -->
<div id="mainbloc">
<h1 class="reports">Items Overdue as of <!-- TMPL_VAR NAME="todaysdate" --></h1>
<table>
<tr>
<th class="reports">Due Date</th>
<th class="reports">Patron</th>
<th class="reports">Phone</th>
<th class="reports">Title</th>
<th class="reports">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="reports-bottom.inc" -->