Synching with default tempalte
[koha.git] / koha-tmpl / intranet-tmpl / npl / en / overdue.tmpl
1 <!-- TMPL_INCLUDE NAME="main-top-print.inc" -->
2 <div id="main"><!-- the site -->
3
4 <h2>Items Overdue as of <!-- TMPL_VAR NAME="todaysdate" --></h2>
5
6 <div class="table"><table>
7   <tr>
8     <th>Due Date</th>
9     <th>Patron</th>
10     <th>Phone</th>
11     <th>Title</th>
12     <th>Author</th>
13   </tr>
14
15   <!-- TMPL_LOOP NAME="overdueloop" -->
16     <tr>
17       <td><!-- TMPL_VAR NAME="duedate" --></td>
18     <!-- TMPL_IF NAME="email" -->
19       <td><a href="mailto:<!-- TMPL_VAR NAME="email" -->?subject=Overdue: <!-- TMPL_VAR NAME="title" -->"><!-- TMPL_VAR NAME="name" --></a></td>
20     <!-- TMPL_ELSE -->
21       <td><!-- TMPL_VAR NAME="name" --></td>
22     <!-- /TMPL_IF -->
23       <td><!-- TMPL_VAR NAME="phone" --></td>
24       <td><!-- TMPL_VAR NAME="title" --></td>
25       <td><!-- TMPL_VAR NAME="author" --></td>
26     </tr>
27   <!-- /TMPL_LOOP -->
28 </table></div>
29
30 </div>
31
32
33 <!-- endmenu -->
34 <!-- TMPL_INCLUDE name="intranet-bottom.inc" -->