0452614ecd71e571b484f69a3159f802393b7864
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / members / moremember-print.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Summary for [% firstname %] [% surname %] ([% cardnumber %])</title>
3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4 <link rel="shortcut icon" href="[% IF ( IntranetFavicon ) %][% IntranetFavicon %][% ELSE %][% themelang %]/includes/favicon.ico[% END %]" type="image/x-icon" />
5 <link rel="stylesheet" type="text/css" href="[% 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=[% cardnumber %]">Account Summary: [% firstname %] [% surname %] ([% cardnumber %])</a></h3>
12
13 <ul><li>[% address %]<br />[% address2 %]</li><li>[% city %], [% zipcode %]</li>
14 <li>[% IF ( phone ) %][% phone %][% ELSE %](no phone number on file)[% END %]</li>
15 <li>[% IF ( email ) %][% email %][% ELSE %](no primary email on file)[% END %]</li>
16 [% IF ( emailpro ) %]<li>[% emailpro %]</li>[% END %]
17 </ul>
18
19 [% IF ( issueloop ) %]
20 <table>
21         <caption>Items Checked Out</caption>
22         <tr>
23                 <th>Title</th>
24                 <th>Author</th>
25                 <th>Item Type</th>
26                 <th>Date Due</th>
27                 <th>Charge</th>
28                 <th>Price</th>
29                 <th>Status</th>
30         </tr>
31
32         [% FOREACH issueloo IN issueloop %]
33         [% IF ( issueloo.red ) %]<tr class="overdue">[% ELSE %]<tr>[% END %]
34                 <td>
35                 [% issueloo.title |html %]
36                 <a href="/cgi-bin/koha/catalogue/detail.pl?item=[% issueloo.itemnumber %]&amp;biblionumber=[% issueloo.biblionumber %]&amp;bi=[% issueloo.biblioitemnumber %]">
37                 </a>
38                 </td>
39                 <td>[% issueloo.author %]</td>
40                 <td>[% issueloo.itemtype_description %]</td>
41                 <td>[% issueloo.date_due %]</td>
42                 <td>[% issueloo.charge %]</td>
43                 <td>[% issueloo.replacementprice %]</td>
44                 <td>[% IF ( issueloo.red ) %]Overdue![% ELSE %]&nbsp;[% END %]</td>
45         </tr>
46         [% END %]
47         <tr>
48             <td colspan="4" style="text-align: right; font-weight:bold;">Totals:</td>
49             <td>[% totaldue %]</td>
50             <td>[% totalprice %]</td>
51             <td colspan="2">&nbsp;</td>
52         </tr>
53         </table>
54         [% END %]
55         
56 [% IF ( reserveloop ) %]
57 <table>
58         <caption>Items on Reserve</caption>
59         <tr>
60                 <th>Title</th>
61                 <th>Author</th>
62                 <th>Format</th>
63                 <th>Requested</th>
64         </tr>
65
66 [% FOREACH reserveloo IN reserveloop %]
67         <tr>
68                 <td><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% reserveloo.biblionumber %]">[% reserveloo.btitle %]</a></td>
69                 <td>[% reserveloo.author %]</td>
70                 <td>[% reserveloo.description %]</td>
71                 <td>[% reserveloo.reservedate2 %]</td>
72         </tr>
73         [% END %]
74 </table>
75 [% END %]
76
77 [% INCLUDE 'intranet-bottom.inc' %]