Bug 20168: (follow-up) Add automatic creation of RTL CSS
[koha.git] / koha-tmpl / opac-tmpl / bootstrap / en / modules / sco / printslip.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% INCLUDE 'doc-head-open.inc' %]
5 <title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha [% END %] &rsaquo; Self checkout &rsaquo; Print Receipt for [% borrowernumber | html %]</title>
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7 <link rel="shortcut icon" href="[% IF ( OpacFavicon  ) %][% OpacFavicon | url %][% ELSE %][% interface | html %]/[% theme | html %]/images/favicon.ico[% END %]" type="image/x-icon" />
8 [% IF ( bidi ) %]
9     [% Asset.css("css/print-rtl.css", { media = "print" }) | $raw %]
10 [% ELSE %]
11     [% Asset.css("css/print.css", { media = "print" }) | $raw %]
12 [% END %]
13 [% IF stylesheet %]
14 <link rel="stylesheet" type="text/css" href="[% stylesheet | $raw %]" />
15 [% END %]
16
17 <!-- JavaScript includes -->
18 [% Asset.js("lib/jquery/jquery-3.4.1.min.js") | $raw %]
19 [% Asset.js("lib/jquery/jquery-migrate-3.1.0.min.js") | $raw %]
20 [% Asset.js("lib/fontfaceobserver.min.js") | $raw %]
21 [% Asset.js("js/global.js") | $raw %]
22
23 [% INCLUDE 'slip-print.inc' #printThenClose %]
24
25 </head>
26
27 <body id="circ_printslip" class="circ">
28     <div id="receipt">
29         [% IF plain %]
30             <pre>
31                 [% slip | html %]
32             </pre>
33         [% ELSE %]
34             [% slip | $raw %]
35         [% END %]
36
37     </div>
38
39 </body>
40 </html>