Moving </head><body> into body of templates so that js and css can be embedded per...
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / serials / routing-preview.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Serials</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 </head>
5 <body>
6 <!-- TMPL_INCLUDE NAME="header.inc" -->
7 <!--TMPL_INCLUDE NAME="menu-serials.inc" -->
8
9 <div id="doc3" class="yui-t2">
10    
11    <div id="bd">
12         <div id="yui-main">
13         <div class="yui-b"><div class="yui-g">
14
15 <h1>Preview Routing List</h1>
16
17 <form method="post" action="routing-preview.pl">
18 <input type="hidden" name="subscriptionid" value="<!-- TMPL_VAR NAME="subscriptionid" -->" />
19 <p><b>Serial Title:</b> <!-- TMPL_VAR NAME="title" --></p>
20 <p><b>Issue:</b> <!-- TMPL_VAR NAME="issue" --></p>
21
22 <table border="0" cellspacing="0" cellpadding="0">
23 <tr><td style="padding-top: 5px;"><b>List Member:</b>&nbsp;</td>
24     <td><table cellspacing="0" cellpadding="0" border="0" class="collapse">
25         <tr><td class="cell-header">Name</td>
26             <td class="cell-header">Location</td></tr>
27 <!-- TMPL_LOOP NAME="memberloop" -->
28         <tr><td class="cell"><!-- TMPL_VAR NAME="name" --></td>
29             <td class="cell"><!-- TMPL_VAR NAME="location" --></td></tr>
30 <!-- /TMPL_LOOP -->
31         </table></td></tr>
32 <tr><td colspan="2">&nbsp;</td></tr>
33 <tr><td><b>Notes:</b></td>
34     <td><!-- TMPL_VAR NAME="routingnotes" --></td></tr>
35 </table>
36 <p>
37 <input type="submit" name="ok" class="button" value="OK, Preview Routing Slip" onclick="print_slip(<!-- TMPL_VAR NAME="subscriptionid" -->,'<!-- TMPL_VAR NAME="issue" -->'); return false" />
38 <input type="submit" name="edit" class="button" value="Edit" />
39 <input type="submit" name="delete" class="button" value="Delete" /></p>
40 </form>
41
42 <script type="text/javascript">
43 <!--
44
45 function print_slip(subscriptionid,issue){
46     var myurl = 'routing-preview.pl?ok=1&subscriptionid='+subscriptionid+'&issue='+issue;
47 window.open(myurl,'PrintSlip','width=400,height=500,toolbar=no,scrollbars=yes');
48     window.location.href='serials-home.pl';
49 }
50 //-->
51 </script>
52 </div>
53 </div>
54 </div>
55
56 <!-- TMPL_INCLUDE NAME="mainmenu.inc" -->
57 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->