Two classes for the columns which don't have to be printed
[koha.git] / koha-tmpl / intranet-tmpl / default / en / overdue.tmpl
1 <!-- TMPL_INCLUDE NAME="reports-top.inc" -->
2 <div id="mainbloc">
3         <h1 class="reports">Items Overdue as of <!-- TMPL_VAR NAME="todaysdate" --></h1>
4         
5         <table>
6         <tr>
7                 <th class="reports">Due Date</th>
8                 <th class="reports">Patron</th>
9                 <th class="reports">Phone</th>
10                 <th class="reports">Title</th>
11                 <th class="reports">Author</th>
12         </tr>
13         
14         <!-- TMPL_LOOP NAME="overdueloop" -->
15                 <tr>
16                         <td><!-- 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></td>
19                         <!-- TMPL_ELSE -->
20                         <td><!-- TMPL_VAR NAME="name" --></td>
21                         <!-- /TMPL_IF -->
22                         <td><!-- TMPL_VAR NAME="phone" --></td>
23                         <td><!-- TMPL_VAR NAME="title" --></td>
24                         <td><!-- TMPL_VAR NAME="author" --></td>
25                 </tr>
26         <!-- /TMPL_LOOP -->
27         </table>
28 </div>
29 <!-- TMPL_INCLUDE NAME="reports-bottom.inc" -->