New basic page structure implemented for circ pages: global main menu in the header...
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / circ / overdue.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Circulation &rsaquo; Items Overdue as of <!-- TMPL_VAR NAME="todaysdate" --></title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 </head>
5 <body>
6 <!-- TMPL_INCLUDE NAME="header.inc" -->
7 <!-- TMPL_INCLUDE NAME="circ-search.inc" -->
8
9 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation.pl">Circulation</a> &rsaquo Circulation Reports &rsaquo Overdues as of <!-- TMPL_VAR NAME="todaysdate" --></div>
10
11 <div id="doc3" class="yui-t2">
12    
13    <div id="bd">
14         <div id="yui-main">
15         <div class="yui-b"><div class="yui-g">
16
17 <h2>Items Overdue as of <!-- TMPL_VAR NAME="todaysdate" --></h2>
18
19 <div class="searchresults">
20 <table>
21 <tr>
22     <th>Due Date</th>
23     <th>Patron</th>
24     <th>Title</th>
25 </tr>
26
27 <!-- TMPL_LOOP NAME="overdueloop" -->
28     <tr>
29         <td><!-- TMPL_VAR NAME="duedate" --></td>
30         <!-- TMPL_IF NAME="email" -->
31         <td><a href="mailto:<!-- TMPL_VAR NAME="email" -->?subject=Overdue: <!-- TMPL_VAR NAME="title" -->"><!-- TMPL_VAR NAME="name" --></a> (<!-- TMPL_VAR NAME="phone" -->)</td>
32         <!-- TMPL_ELSE -->
33         <td><!-- TMPL_VAR NAME="name" --> (<!-- TMPL_VAR NAME="phone" -->)</td>
34         <!-- /TMPL_IF -->
35         <td>
36             <p><!-- TMPL_VAR NAME="title" --></p>
37             <p><!-- TMPL_VAR NAME="author" --></p>
38         </td>
39     </tr>
40 <!-- /TMPL_LOOP -->
41 </table>
42 </div>
43 </div>
44 </div>
45 </div>
46
47 <!-- TMPL_INCLUDE NAME="circ-menu.inc" -->
48 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->