Koha/koha-tmpl/intranet-tmpl/prog/en/modules/batch/print-notices.tt
Owen Leonard 13ad7c7ea0 Bug 28438: Capitalization: Various corrections
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>
2021-09-28 15:12:45 +02:00

27 lines
794 B
Text

[% INCLUDE 'doc-head-open.inc' %]
[% USE raw %]
<title>Print notices for [% today | html %]</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
<!--
.message { page-break-after: always }
pre { font-family: monospace }
pre {white-space: pre-wrap;}
pre {white-space: -moz-pre-wrap;}
pre {white-space: -o-pre-wrap;}
pre {word-wrap: break-work;}
-->
</style>
[% IF ( stylesheet ) %]
<link rel="stylesheet" type="text/css" href="[% stylesheet | url %]">
[% END %]
</head>
<body id="batch_print-notices" class="batch">
[% FOREACH message IN messages %]
<div class="message">
<pre>[% message.content | $raw %]</pre>
</div>
[% END %]
</body>
</html>