rel_3_0 moved to HEAD (introducing new files)
[koha_gimpoz] / koha-tmpl / intranet-tmpl / prog / en / circ / overdue.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Items Overdue as of <!-- TMPL_VAR NAME="todaysdate" --><!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
2 <!--TMPL_INCLUDE NAME="menus.inc" -->
3 <!-- TMPL_INCLUDE NAME="menu-circ.inc"-->
4 <h2>Items Overdue as of <!-- TMPL_VAR NAME="todaysdate" --></h2>
5
6 <div class="searchresults">
7 <table>
8 <tr>
9     <th>Due Date</th>
10     <th>Patron</th>
11     <th>Title</th>
12 </tr>
13
14 <!-- TMPL_LOOP NAME="overdueloop" -->
15     <tr>
16         <td width="15%"><!-- TMPL_VAR NAME="duedate" --></td>
17         <!-- TMPL_IF NAME="email" -->
18         <td><a href="mailto:<!-- TMPL_VAR NAME="email" -->?subject=Overdue: <!-- TMPL_VAR NAME="title" -->"><!-- TMPL_VAR NAME="name" --></a> (<!-- TMPL_VAR NAME="phone" -->)</td>
19         <!-- TMPL_ELSE -->
20         <td><!-- TMPL_VAR NAME="name" --> (<!-- TMPL_VAR NAME="phone" -->)</td>
21         <!-- /TMPL_IF -->
22         <td>
23             <p><!-- TMPL_VAR NAME="title" --></p>
24             <p><!-- TMPL_VAR NAME="author" --></p>
25         </td>
26     </tr>
27 <!-- /TMPL_LOOP -->
28 </table>
29 </div>
30 <!-- TMPL_INCLUDE name="intranet-bottom.inc" -->