Setting it up so circ and members use a different toolbar so that actions can return...
[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         </tr>
23
24         <!-- TMPL_loop name="issueloop" -->
25         <!-- TMPL_IF name="red" --><!-- TMPL_ELSE -->
26                 <tr>
27                 <td><!-- TMPL_VAR NAME="date_due" --></td>
28                 <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" --></a></td>
29                 </tr>
30         <!-- /TMPL_IF -->
31         <!-- /TMPL_LOOP -->
32 </table>
33         
34         <table>
35         <caption>Overdues</caption>
36         <tr>
37         <th>Date Due</th>
38         <th>Title</th>
39         </tr>
40         <!-- TMPL_LOOP NAME="issueloop" -->
41         <!-- TMPL_IF NAME="red" --><tr>
42         <td><!-- TMPL_VAR NAME="date_due" --></td>
43         <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" --></a></td>
44         </tr>
45         <!-- /TMPL_IF -->
46         <!-- /TMPL_LOOP -->
47         </table>
48
49 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->