Adding KOHAVERSION management.
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / 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
5 <!-- TMPL_INCLUDE NAME="menus.inc" -->
6 <!--TMPL_INCLUDE NAME="menu-serials.inc" -->
7
8 <div id="mainbloc">
9 <h1 class="bull">Preview Routing List</h1>
10
11 <form method="post" action="routing-preview.pl">
12 <input type="hidden" name="subscriptionid" value="<!-- TMPL_VAR NAME="subscriptionid" -->" />
13 <p><b>Serial Title:</b> <!-- TMPL_VAR NAME="title" --></p>
14 <p><b>Issue:</b> <!-- TMPL_VAR NAME="issue" --></p>
15
16 <table border="0" cellspacing="0" cellpadding="0">
17 <tr valign="top"><td style="padding-top: 5px;"><b>List Member:</b>&nbsp;</td>
18     <td><table cellspacing="0" cellpadding="0" border="0" class="collapse">
19         <tr><td class="cell-header">Name</td>
20             <td class="cell-header">Location</td></tr>
21 <!-- TMPL_LOOP NAME="memberloop" -->
22         <tr><td class="cell"><!-- TMPL_VAR NAME="name" --></td>
23             <td class="cell"><!-- TMPL_VAR NAME="location" --></td></tr>
24 <!-- /TMPL_LOOP -->
25         </table></td></tr>
26 <tr valign="top"><td colspan="2">&nbsp;</td></tr>
27 <tr valign="top"><td><b>Notes:</b></td>
28     <td><!-- TMPL_VAR NAME="routingnotes" --></td></tr>
29 </table>
30 <p>
31 <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" />
32 <input type="submit" name="edit" class="button" value="Edit" />
33 <input type="submit" name="delete" class="button" value="Delete" /></p>
34 </form>
35 </div>
36
37 <script type="text/javascript">
38 <!--
39
40 function print_slip(subscriptionid,issue){
41     var myurl = 'routing-preview.pl?ok=1&subscriptionid='+subscriptionid+'&issue='+issue;
42 window.open(myurl,'PrintSlip','width=400,height=500,toolbar=no,scrollbars=yes');
43     window.location.href='serials-home.pl';
44 }
45 //-->
46 </script>
47 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->