Martin Renvoize
b4d9d367ba
The print notices template had it's own implimentation of a message dialog. To make it consistent with other area's, we should add the dialog class. Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
27 lines
801 B
Text
27 lines
801 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="dialog message">
|
|
<pre>[% message.content | $raw %]</pre>
|
|
</div>
|
|
[% END %]
|
|
</body>
|
|
</html>
|