Merge remote branch 'kc/new/enh/bug_3659' into kcmaster
[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 primary email on file)<!-- /TMPL_IF --></li>
16 <!-- TMPL_IF NAME="emailpro" --><li><!-- TMPL_VAR NAME="emailpro" --></li><!-- /TMPL_IF -->
17 </ul>
18
19 <!-- TMPL_IF NAME="issueloop" -->
20 <table>
21         <caption>Items Checked Out</caption>
22         <tr>
23                 <th>Title</th>
24                 <th>Author</th>
25                 <th>Format</th>
26                 <th>Date Due</th>
27                 <th>Charge</th>
28                 <th>Price</th>
29                 <th>Status</th>
30         </tr>
31
32         <!-- TMPL_loop name="issueloop" -->
33         <!-- TMPL_IF name="red" --><tr class="overdue"><!-- TMPL_ELSE --><tr><!-- /TMPL_IF-->
34                 <td>
35                 <!-- TMPL_VAR NAME="title" escape="html" -->
36                 <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" -->">
37                 </a>
38                 </td>
39                 <td><!-- TMPL_VAR NAME="author" --></td>
40                 <td><!-- TMPL_VAR NAME="itemtype" --></td>
41                 <td><!-- TMPL_VAR NAME="date_due" --></td>
42                 <td><!-- TMPL_VAR NAME="charge" --></td>
43                 <td><!-- TMPL_VAR NAME="replacementprice" --></td>
44                 <td><!-- TMPL_IF NAME="red" -->Overdue!<!-- TMPL_ELSE -->&nbsp;<!-- /TMPL_IF --></td>
45         </tr>
46         <!-- /TMPL_LOOP -->
47         <tr>
48             <td colspan="4" style="text-align: right; font-weight:bold;">Totals:</td>
49             <td><!-- TMPL_VAR NAME="totaldue" --></td>
50             <td><!-- TMPL_VAR NAME="totalprice" --></td>
51             <td colspan="2">&nbsp;</td>
52         </tr>
53         </table>
54         <!-- /TMPL_IF -->
55         
56 <!-- TMPL_IF NAME="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 <!-- TMPL_loop name="reserveloop" -->
67         <tr>
68                 <td><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->"><!-- TMPL_VAR NAME="btitle" --></a></td>
69                 <td><!-- TMPL_VAR NAME="author" --></td>
70                 <td><!-- TMPL_VAR NAME="description" --></td>
71                 <td><!-- TMPL_VAR NAME="reservedate2" --></td>
72         </tr>
73         <!-- /tmpl_loop -->
74 </table>
75 <!-- /TMPL_IF -->
76
77 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->