Owen Leonard
13ad7c7ea0
This patch makes capitalization corrections to many templates in the OPAC and staff interface. A exhaustive test plan would be huge, so I recommend examining the patch to confirm that it contains correct case changes. If you want to make it easier to examine changes you can try: https://github.com/so-fancy/diff-so-fancy Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
40 lines
1.3 KiB
Text
40 lines
1.3 KiB
Text
[% USE raw %]
|
|
[% USE Asset %]
|
|
[% USE Koha %]
|
|
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Print receipt for [% borrowernumber | html %] › Self checkout › [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha [% END %]</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<link rel="shortcut icon" href="[% IF ( OpacFavicon ) %][% OpacFavicon | url %][% ELSE %][% interface | html %]/[% theme | html %]/images/favicon.ico[% END %]" type="image/x-icon" />
|
|
[% IF ( bidi ) %]
|
|
[% Asset.css("css/print-rtl.css", { media = "print" }) | $raw %]
|
|
[% ELSE %]
|
|
[% Asset.css("css/print.css", { media = "print" }) | $raw %]
|
|
[% END %]
|
|
[% IF stylesheet %]
|
|
<link rel="stylesheet" type="text/css" href="[% stylesheet | $raw %]" />
|
|
[% END %]
|
|
|
|
<!-- JavaScript includes -->
|
|
[% Asset.js("lib/jquery/jquery-3.4.1.min.js") | $raw %]
|
|
[% Asset.js("lib/jquery/jquery-migrate-3.1.0.min.js") | $raw %]
|
|
[% Asset.js("lib/fontfaceobserver.min.js") | $raw %]
|
|
[% Asset.js("js/global.js") | $raw %]
|
|
|
|
[% INCLUDE 'slip-print.inc' #printThenClose %]
|
|
|
|
</head>
|
|
|
|
<body id="circ_printslip" class="circ">
|
|
<div id="receipt">
|
|
[% IF plain %]
|
|
<pre>
|
|
[% slip | html %]
|
|
</pre>
|
|
[% ELSE %]
|
|
[% slip | $raw %]
|
|
[% END %]
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|