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