fixing sort for pendingreserves report
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / members / moremember-print.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Summary for <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --> (<!-- TMPL_VAR NAME="cardnumber" -->)</title>
3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4 <link rel="shortcut icon" href="<!-- TMPL_VAR NAME="themelang" -->/includes/favicon.ico" type="image/x-icon" />
5 <link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR NAME="themelang" -->/css/print.css" />
6 </head>
7 <body>
8
9 <div id="main">
10
11 <h3><a href="/cgi-bin/koha/circ/circulation.pl?findborrower=<!-- TMPL_VAR NAME="cardnumber" -->">Account Summary: <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --> (<!-- TMPL_VAR NAME="cardnumber" -->)</a></h3>
12
13 <ul><li><!-- TMPL_VAR NAME="address" --><br /><!-- TMPL_VAR NAME="address2" --></li><li><!-- TMPL_VAR NAME="city" -->, <!-- TMPL_VAR NAME="zipcode" --></li>
14 <li><!-- TMPL_IF NAME="phone" --><!-- TMPL_VAR NAME="phone" --><!-- TMPL_ELSE -->(no phone number on file)<!-- /TMPL_IF --></li>
15 <li><!-- TMPL_IF NAME="email" --><!-- TMPL_VAR NAME="email" --><!-- TMPL_ELSE -->(no email on file)<!-- /TMPL_IF --></li>
16 </ul>
17
18 <!-- TMPL_IF NAME="issueloop" -->
19 <table>
20         <caption>Items Checked Out</caption>
21         <tr>
22                 <th>Title</th>
23                 <th>Author</th>
24                 <th>Format</th>
25                 <th>Date Due</th>
26                 <th>Status</th>
27         </tr>
28
29         <!-- TMPL_loop name="issueloop" -->
30         <tr<!-- TMPL_IF name="red" --> class="overdue"</TMPL_IF>>
31                 <td>
32                 <!-- TMPL_VAR NAME="title" -->
33                 <a href="/cgi-bin/koha/catalogue/detail.pl?item=<!-- TMPL_VAR NAME="itemnumber" -->&amp;biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->&amp;bi=<!-- TMPL_VAR NAME="biblioitemnumber" -->">
34                 </a>
35                 </td>
36                 <td><!-- TMPL_VAR NAME="author" --></td>
37                 <td><!-- TMPL_VAR NAME="itemtype" --></td>
38                 <td><!-- TMPL_VAR NAME="date_due" --></td>
39                 <td><!-- TMPL_IF NAME="red" -->Overdue!<!-- TMPL_ELSE -->&nbsp;<!-- /TMPL_IF --></td>
40         </tr>
41         <!-- /TMPL_LOOP -->
42         </table>
43         <!-- /TMPL_IF -->
44         
45 <!-- TMPL_IF NAME="reserveloop" -->
46 <table>
47         <caption>Items on Reserve</caption>
48         <tr>
49                 <th>Title</th>
50                 <th>Author</th>
51                 <th>Format</th>
52                 <th>Requested</th>
53         </tr>
54
55 <!-- TMPL_loop name="reserveloop" -->
56         <tr>
57                 <td><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->"><!-- TMPL_VAR NAME="btitle" --></a></td>
58                 <td><!-- TMPL_VAR NAME="author" --></td>
59                 <td><!-- TMPL_VAR NAME="description" --></td>
60                 <td><!-- TMPL_VAR NAME="reservedate2" --></td>
61         </tr>
62         <!-- /tmpl_loop -->
63 </table>
64 <!-- /TMPL_IF -->
65
66 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->