More fixes for Bug 2600, enabling the appearance of HTML tags in item titles. Resubmi...
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / members / moremember-receipt.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Print Receipt for <!-- 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 <script language="javascript">
7         window.print();
8         window.close();
9 </script>
10 </head>
11 <body>
12
13 <div id="receipt">
14
15 <h3><!-- TMPL_VAR name="LibraryName" --></h3>
16 <!-- TMPL_IF NAME="branchname" --><!-- TMPL_VAR NAME="branchname" --><br /><!-- /TMPL_IF -->
17 Issued To <a href="/cgi-bin/koha/circ/circulation.pl?findborrower=<!-- TMPL_VAR NAME="cardnumber">"><!-- TMPL_VAR NAME="cardnumber" --></a><br />
18
19 <!-- TMPL_VAR NAME="todaysdate" --><br />
20
21 <table>
22     <caption>Issues</caption>
23     <tr>
24         <th>Date Due</th>
25         <th>Title</th>
26         <th>Barcode</th>
27     </tr>
28
29     <!-- TMPL_loop name="issueloop" -->
30     <!-- TMPL_IF name="red" --><!-- TMPL_ELSE -->
31     <tr>
32         <td><!-- TMPL_VAR NAME="date_due" --></td>
33         <td><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" -->"><!-- TMPL_VAR NAME="title" escape="html" --></a></td>
34         <td><!-- TMPL_VAR NAME="barcode" --></td>
35     </tr>
36     <!-- /TMPL_IF -->
37     <!-- /TMPL_LOOP -->
38 </table>
39
40 <!-- TMPL_IF NAME="overdues_exist" -->
41 <table>
42     <caption>Overdues</caption>
43     <tr>
44         <th>Date Due</th>
45         <th>Title</th>
46         <th>Barcode</th>
47     </tr>
48     <!-- TMPL_LOOP NAME="issueloop" -->
49     <!-- TMPL_IF NAME="red" -->
50     <tr>
51         <td><!-- TMPL_VAR NAME="date_due" --></td>
52         <td><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" -->"><!-- TMPL_VAR NAME="title" escape="html" --></a></td>
53     <td><!-- TMPL_VAR NAME="barcode" --></td>
54     </tr>
55     <!-- /TMPL_IF -->
56     <!-- /TMPL_LOOP -->
57 </table>
58 <!-- /TMPL_IF -->
59
60 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->