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