Bug 34889: Convert PatronSelfRegistrationAdditionalInstructions system preference...
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / batch / print-notices.tt
1 [% USE raw %]
2 [% PROCESS 'i18n.inc' %]
3 [% INCLUDE 'doc-head-open.inc' %]
4     <title>[% FILTER collapse %]
5         [% tx("Print notices for {today}", { today = today }) | html %]
6     [% END %]</title>
7
8     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9     <style>
10         <!--
11         .message { page-break-after: always }
12         pre { font-family: monospace }
13         pre {white-space: pre-wrap;}
14         pre {white-space: -moz-pre-wrap;}
15         pre {white-space: -o-pre-wrap;}
16         pre {word-wrap: break-work;}
17         -->
18     </style>
19     [% IF ( stylesheet ) %]
20     <link rel="stylesheet" type="text/css" href="[% stylesheet | url %]">
21     [% END %]
22 </head>
23 <body id="batch_print-notices" class="batch">
24     [% FOREACH message IN messages %]
25     <div class="dialog message">
26         [% IF ( message.is_html ) %]
27             [% message.content | $raw %]
28         [% ELSE %]
29             <pre>[% message.content | $raw %]</pre>
30         [% END %]
31     </div>
32     [% END %]
33 </body>
34 </html>