Passing through reviewson value, and fixing syntax error
[koha.git] / koha-tmpl / intranet-tmpl / default / de / overdue.tmpl
1 <!-- TMPL_INCLUDE NAME="reports-top.inc" -->
2 <div id="mainbloc">
3         <h1 class="reports">&Uuml;berf&auml;llige Exemplare am <!-- TMPL_VAR NAME="todaysdate" --></h1>
4         
5         <table>
6         <tr>
7                 <th class="reports">F&auml;lligkeitsdatum</th>
8                 <th class="reports">Benutzer</th>
9                 <th class="reports">Tel.:</th>
10                 <th class="reports">Titel</th>
11                 <th class="reports">Verfasser</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=Überziehung: <!-- 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" -->