Josef Moravec
804677265e
Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
53 lines
1.5 KiB
Text
53 lines
1.5 KiB
Text
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Serials › Routing slip preview</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
<script type="text/javascript">
|
|
$(document).ready(function(){
|
|
$("#print_slip").on("click",function(e){
|
|
e.preventDefault();
|
|
window.print();
|
|
self.close();
|
|
});
|
|
});
|
|
</script>
|
|
<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 id="ser_routing-preview-slip" class="ser">
|
|
|
|
<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> </td>
|
|
</tr>
|
|
[% END %]
|
|
</table>
|
|
|
|
<div id="routingnotes">
|
|
<p id="generalroutingnote">[% generalroutingnote %]</p>
|
|
<p id="routingnote">[% routingnotes %]</p>
|
|
</div>
|
|
|
|
<div id="closewindow" class="noprint"><a class="btn btn-default btn-default" id="print_slip" href="#"><i class="fa fa-print"></i> Print</a> <a class="btn btn-default btn-default close" href="#">Close</a></div>
|
|
|
|
</div>
|
|
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|