first go at moving templates to a modules/ dir
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / lateorders.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Acquisitions</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <!-- TMPL_INCLUDE NAME="menus.inc" -->
5 <!-- TMPL_INCLUDE NAME="menu-acqui.inc" -->
6
7 <h1 ><!-- TMPL_IF name="Supplier" --><!-- TMPL_VAR name="Supplier" --> : <!--/TMPL_IF -->Late issues</h1>
8 <div id="acqui_lateorders">
9     <table>
10         <tr>
11             <th>Order Date</th>
12             <th>Supplier</th>
13             <th>Book information</th>
14             <th>Total cost</th>
15             <th>Basket</th>
16             <th>&nbsp;</th>
17         </tr>
18         <tr>
19             <td align="center" class="doNotPrint">
20                 <form action="lateorders.pl" method="post">
21                 <input align="right" size="4" maxlength="3" type="text" name="delay" value="<!--TMPL_VAR Name="delay" -->" /> days
22             </td>
23             <td class="doNotPrint">
24                     <!-- TMPL_VAR name="CGIsupplier" -->
25             </td>
26             <td colspan="2">
27                     &nbsp;
28             </td>
29             <td class="doNotPrint">
30                 <input type="submit" value="filter" />
31                 </form>
32             </td>
33             <td class="doNotPrint">
34                 <form name="claim" method="post">
35                     <input type="hidden" name="op" value="send_alert" />
36                     <select name="letter_code" >
37                         <!--TMPL_LOOP Name="letters"-->
38                             <option value="<!--TMPL_VAR Name="code"-->"><!--TMPL_VAR Name="name"--></option>
39                         <!--/TMPL_LOOP -->
40                     </select>
41                     <input type="submit" value="Claim Order" />
42             </td>
43         </tr>
44         <!-- TMPL_LOOP name="lateorders" -->
45             <!--TMPL_IF Name="hilighted" -->
46                 <tr class="hilighted"> 
47             <!--TMPL_ELSE-->
48                 <tr>
49             <!-- /TMPL_IF -->
50                 <td>
51                     <!-- TMPL_VAR name="orderdate" -->
52                     (<!-- TMPL_VAR name="latesince" --> days)
53                 </td>
54                 <td class="doNotPrint">
55                         <!-- TMPL_VAR name="supplier" -->
56                 </td>
57                 <td >
58                     <b><!-- TMPL_VAR name="title" --></b>
59                     <!-- TMPL_IF name="author" --><br/><i>Author:</i> <!-- TMPL_VAR NAME="author" --><!-- /TMPL_IF -->
60                     <!-- TMPL_IF name="publisher" -->
61                         <br/><i>Published by:</i> <!-- TMPL_VAR NAME="publisher" -->
62                         <!-- TMPL_IF name="publicationyear" -->
63                             <i> in </i><!-- TMPL_VAR name="publicationyear" -->
64                         <!-- /TMPL_IF -->
65                     <!-- /TMPL_IF -->
66                 </td>
67                 <td align="right">
68                     <!-- TMPL_VAR name="unitpricesupplier" -->x<!-- TMPL_VAR name="quantity" --> = 
69                     <!-- TMPL_VAR name="subtotal" -->
70                     <p title="budget"><!-- TMPL_VAR name="budget" --></p>
71                 </td>
72                 <td class="doNotPrint">
73                     <p><a href="basket.pl?basketno=<!-- TMPL_VAR name="basketno" -->" title="basket">
74                         <!-- TMPL_VAR name="basketno" -->
75                     </a>
76                     </p>
77                     <p title="branch"><!-- TMPL_VAR name="branch" --></p>
78                 </td>
79                 <td class="doNotPrint">
80                     <input type="checkbox" name="claim_for" value="<!--TMPL_VAR Name="ordernumber" -->" />
81                 </td>
82             </tr>
83         <!-- /TMPL_LOOP -->
84         <tr> 
85             <th>
86                 Total
87             </th>
88             <th colspan="2">
89                 &nbsp;
90             </th>
91             <th>
92                 <!-- TMPL_VAR name="total" -->
93             </th>
94             <th class="doNotPrint"> &nbsp;</th>
95             <td>
96                 <input type="submit" value="Claim Order" />
97                 </form>
98             </td>
99         </tr>
100     </table>
101 </div>
102 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
103