29 lines
943 B
Cheetah
29 lines
943 B
Cheetah
<!-- TMPL_INCLUDE NAME="reports-top.inc" -->
|
|
<div id="mainbloc">
|
|
<h1 class="reports">exemplaire en retard depuis le <!-- TMPL_VAR NAME="todaysdate" --></h1>
|
|
|
|
<table>
|
|
<tr>
|
|
<th class="reports">Date de retour</th>
|
|
<th class="reports">Emprunteur</th>
|
|
<th class="reports">Téléphone</th>
|
|
<th class="reports">Titre</th>
|
|
<th class="reports">Auteur</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" -->
|