Bug 10904: Limit patron update request management by branch
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / circ / printslip.tt
1 [% USE Koha %]
2 [% INCLUDE 'doc-head-open.inc' %]
3 [% IF ( caller = 'hold-transfer' ) %]
4 <title>Koha &rsaquo; Circulation &rsaquo; Hold transfer print receipt</title>
5 [% ELSIF ( caller == 'transfer' ) %]
6 <title>Koha &rsaquo; Circulation &rsaquo; Transfers print receipt</title>
7 [% ELSIF ( caller == 'members' ) %]
8 <title>Koha &rsaquo; Members &rsaquo; Print receipt for [% borrowernumber %]</title>
9 [% END %]
10
11 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
12 <link rel="shortcut icon" href="[% IF ( IntranetFavicon ) %][% IntranetFavicon %][% ELSE %][% interface %]/[% theme %]/img/favicon.ico[% END %]" type="image/x-icon" />
13 <link rel="stylesheet" type="text/css" href="[% themelang %]/css/print.css" />
14 [% IF ( Koha.Preference('SlipCSS') ) %]
15 <link rel="stylesheet" type="text/css" href="[% Koha.Preference('SlipCSS') %]" />
16 [% END %]
17
18 [% INCLUDE 'slip-print.inc' #printThenClose %]
19 </head>
20 <body id="circ_printslip" class="circ" onload="printThenClose();">
21 <div id="receipt">
22
23 [% IF plain %]
24 <pre>
25 [% IF ( slip ) %][% slip %][% ELSE %]No hold found[% END %]
26 </pre>
27 [% ELSE %]
28 [% IF ( slip ) %][% slip %][% ELSE %]No hold found[% END %]
29 [% END %]
30
31 [% INCLUDE 'intranet-bottom.inc' %]