0362452c2598ec4ca37bfcb60672a423578b13bd
[srvgit] / koha-tmpl / intranet-tmpl / prog / en / modules / members / printinvoice.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% SET footerjs = 1 %]
5
6 [% INCLUDE 'doc-head-open.inc' %]
7 <title>Print receipt for [% patron.cardnumber | html %]</title>
8 [% INCLUDE 'doc-head-close.inc' %]
9
10 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
11 <link rel="shortcut icon" href="[% IF ( IntranetFavicon ) %][% IntranetFavicon | url %][% ELSE %][% interface | html %]/[% theme | html %]/img/favicon.ico[% END %]" type="image/x-icon" />
12
13 [% Asset.css("css/printreceiptinvoice.css") | $raw %]
14 [% INCLUDE 'blocking_errors.inc' %]
15 </head>
16
17 <body id="printinvoice" class="pat">
18
19 <div id="receipt">
20   [% IF slip %]
21     [% IF plain %]
22     <pre>
23       [% slip | html %]
24     </pre>
25     [% ELSE %]
26       [% slip | $raw %]
27     [% END %]
28   [% ELSE %]
29     No print template found
30   [% END %]
31 </div>
32
33 [% MACRO jsinclude BLOCK %]
34     [% INCLUDE 'slip-print.inc' #printThenClose %]
35 [% END %]
36
37 [% INCLUDE 'intranet-bottom.inc' %]