Koha/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing-preview-slip.tt
Katrin Fischer b9abfee3ab Bug 7557: Change hardcoded routing list note into a system preference
Adds a new system preference RoutingListNote under the Serials tab.

The note will display above the note from the subscription and replace
the current hardcoded note:

"Notes: Please return this item promptly as others are waiting for it."

The patch adds unique ids to all notes and the note in general, so it
can be styled using CSS.

Also corrects the routing slip template to follow the HTML4 rule.

Update 2012-03-12: Fixed problem in updatedatebase.
2012-03-14 16:27:07 +01:00

47 lines
1.2 KiB
Text

[% INCLUDE 'doc-head-open.inc' %]
<title>Koha &rsaquo; Serials &rsaquo; Routing slip preview</title>
[% INCLUDE 'doc-head-close.inc' %]
<style type="text/css">
#custom-doc { width:38.46em;*width:37.53em;min-width:500px; margin:auto; text-align:left; }
</style>
<style type="text/css" media="print">
.yui-t7, #custom-doc { min-width:0; width:auto; }
</style>
</head>
<body>
<div id="custom-doc" class="yui-t7">
<div id="bd">
<table>
<tr>
<td colspan="2"><h3>[% libraryname %]</h3></td>
</tr>
<tr>
<td colspan="2"><b>Title:</b> [% title |html %]<br />[% issue %]</td>
</tr>
<tr>
<td><b>Name</b></td>
<td><b>Date due</b></td>
</tr>
[% FOREACH memberloo IN memberloop %]
<tr>
<td>[% memberloo.name %]</td>
<td>&nbsp;</td>
</tr>
[% END %]
</table>
<div id="routingnotes">
<p id="generalroutingnote">[% generalroutingnote %]</p>
<p id="routingnote">[% routingnotes %]</p>
</div>
<div id="slip-block-links" class="noprint">
<a class="button" href="javascript:window.print();self.close()">Print</a> &nbsp; <a class="button" href="javascript:self.close()">Close</a>
</div>
</div>
[% INCLUDE 'intranet-bottom.inc' %]