Bug 16239: Update templates
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / serials / routing-preview-slip.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Serials  &rsaquo; Routing slip preview</title>
3 [% INCLUDE 'doc-head-close.inc' %]
4 <script type="text/javascript">
5     $(document).ready(function(){
6         $("#print_slip").on("click",function(e){
7             e.preventDefault();
8             window.print();
9             self.close();
10         });
11     });
12 </script>
13 <style type="text/css">
14    #custom-doc { width:38.46em;*width:37.53em;min-width:500px; margin:auto; text-align:left; }
15 </style>
16 <style type="text/css" media="print">
17    .yui-t7, #custom-doc { min-width:0; width:auto; }
18 </style>
19 </head>
20 <body id="ser_routing-preview-slip" class="ser">
21
22 <div id="custom-doc" class="yui-t7">
23    <div id="bd">
24
25 <table>
26     <tr>
27         <td colspan="2"><h3>[% libraryname %]</h3></td>
28     </tr>
29     <tr>
30         <td colspan="2"><b>Title:</b> [% title |html %]<br />[% issue %]</td>
31     </tr>
32     <tr>
33         <td><b>Name</b></td>
34         <td><b>Date due</b></td>
35     </tr>
36     [% FOREACH memberloo IN memberloop %]
37     <tr>
38         <td>[% memberloo.name %]</td>
39         <td>&nbsp;</td>
40     </tr>
41     [% END %]
42 </table>
43
44 <div id="routingnotes">
45     <p id="generalroutingnote">[% generalroutingnote %]</p>
46     <p id="routingnote">[% routingnotes %]</p>
47 </div>
48
49     <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>
50
51    </div>
52
53 [% INCLUDE 'intranet-bottom.inc' %]