Jonathan Druart
11622b8a9e
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
35 lines
1.4 KiB
Text
35 lines
1.4 KiB
Text
[% USE raw %]
|
|
[% USE Asset %]
|
|
[% USE Koha %]
|
|
[% INCLUDE 'doc-head-open.inc' %]
|
|
[% IF ( caller == 'hold-transfer' ) %]
|
|
<title>Koha › Circulation › Hold transfer print receipt</title>
|
|
[% ELSIF ( caller == 'transfer' ) %]
|
|
<title>Koha › Circulation › Transfers print receipt</title>
|
|
[% ELSIF ( caller == 'members' ) %]
|
|
<title>Koha › Patrons › Print receipt for [% borrowernumber | html %]</title>
|
|
[% ELSIF ( title ) %][%# FIXME title is never defined %]
|
|
<title>Koha › Patrons › [% title | html %]</title>
|
|
[% END %]
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<link rel="shortcut icon" href="[% IF ( IntranetFavicon ) %][% IntranetFavicon | url %][% ELSE %][% interface | html %]/[% theme | html %]/img/favicon.ico[% END %]" type="image/x-icon" />
|
|
[% Asset.css("css/print.css") | $raw %]
|
|
[% IF ( Koha.Preference('SlipCSS') ) %]
|
|
<link rel="stylesheet" type="text/css" href="[% Koha.Preference('SlipCSS') | $raw %]" />
|
|
[% END %]
|
|
|
|
[% INCLUDE 'slip-print.inc' #printThenClose %]
|
|
</head>
|
|
<body id="circ_printslip" class="circ">
|
|
<div id="receipt">
|
|
|
|
[% IF plain %]
|
|
<pre>
|
|
[% IF ( slip ) %][% slip | html %][% ELSE %]No slip template found[% END %]
|
|
</pre>
|
|
[% ELSE %]
|
|
[% IF ( slip ) %][% slip | $raw %][% ELSE %]No slip template found[% END %]
|
|
[% END %]
|
|
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|