Koha/koha-tmpl/intranet-tmpl/prog/en/modules/batch/print-notices.tt
Katrin Fischer 84839a93f5 Bug 7760: Add ids and classes to every staff page to help with customizaton (batch, error)
Signed-off-by: Owen Leonard <oleonard@myacpl.org>
2012-03-22 18:12:24 +01:00

21 lines
619 B
Text

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