Adding a few columns to members/readingrec.pl
[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 </head>
7 <body>
8
9 <div id="receipt">
10
11 <h3><!-- TMPL_VAR name="LibraryName" --></h3>
12 <!-- TMPL_IF NAME="branchname" --><!-- TMPL_VAR NAME="branchname" --><br /><!-- /TMPL_IF -->
13 Issued To <a href="/cgi-bin/koha/circ/circulation.pl?findborrower=<!-- TMPL_VAR NAME="cardnumber">"><!-- TMPL_VAR NAME="cardnumber" --></a><br />
14
15 <!-- TMPL_VAR NAME="todaysdate" --><br />
16
17 <table>
18     <caption>Issues</caption>
19     <tr>
20         <th>Date Due</th>
21         <th>Title</th>
22         <th>Barcode</th>
23     </tr>
24
25     <!-- TMPL_loop name="issueloop" -->
26     <!-- TMPL_IF name="red" --><!-- TMPL_ELSE -->
27     <tr>
28         <td><!-- TMPL_VAR NAME="date_due" --></td>
29         <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>
30         <td><!-- TMPL_VAR NAME="barcode" --></td>
31     </tr>
32     <!-- /TMPL_IF -->
33     <!-- /TMPL_LOOP -->
34 </table>
35
36 <!-- TMPL_IF NAME="overdues_exist" -->
37 <table>
38     <caption>Overdues</caption>
39     <tr>
40         <th>Date Due</th>
41         <th>Title</th>
42         <th>Barcode</th>
43     </tr>
44     <!-- TMPL_LOOP NAME="issueloop" -->
45     <!-- TMPL_IF NAME="red" -->
46     <tr>
47         <td><!-- TMPL_VAR NAME="date_due" --></td>
48         <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>
49     <td><!-- TMPL_VAR NAME="barcode" --></td>
50     </tr>
51     <!-- /TMPL_IF -->
52     <!-- /TMPL_LOOP -->
53 </table>
54 <!-- /TMPL_IF -->
55
56 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->