Synching with rel_2_2.
[koha.git] / koha-tmpl / intranet-tmpl / npl / en / reports / inventory.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Koha -- Reports: Inventory<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
2 <!-- TMPL_INCLUDE NAME="masthead.inc" -->
3 <!-- TMPL_INCLUDE NAME="intranet-nav.inc" -->
4
5 <div id="main">
6         <h1>Inventory Report</h1>
7         <form method="post">
8         <div class="data">
9         <table>
10         <caption>Select items you want to check</caption>
11         <tr><th><label for="minlocation">Item Location (items.itemcallnumber) between:</label></th><td><input type="text" name="minlocation" id="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" /> 
12                         <label for="maxlocation">...and...</label>
13                                 <input type="text" name="maxlocation" id="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" /></td></tr>
14         <tr><th><label for="datelastseen">Not seen since:</label></th><td><input type="text" name="datelastseen" id="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" size="10" maxlength="10" /></td></tr>
15         <tr><th><label for="pagesize">Items per Page: </label></th><td><input type="text" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" maxlength="5" size="5" /></td></tr>
16         <tr><th><label for="offset">Beginning at Page: </label></th><td><input type="text" name="offset" id="offset" value="<!-- TMPL_VAR NAME="offset" -->" size="5" maxlength="5" /></td></tr>
17         </table>
18                 <p>
19                         <input type="submit" value="Generate Report" class="submit">
20                 </p>
21         </form>
22         <!-- TMPL_IF NAME="loop" -->
23         <form method="post">
24         <input type="hidden" name="markseen" value="1" />
25         <input type="hidden" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" />
26         <input type="hidden" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" />
27         <input type="hidden" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" />
28         <input type="hidden" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" />
29         <input type="hidden" name="offset" value="<!-- TMPL_VAR NAME="offset" -->" />
30         
31         <table>
32                 <tr>
33                         <th>Seen</th>
34                         <th>Barcode</th>
35                         <th>Call number</th>
36                         <th>Title</th>
37                         <th>Author</th>
38                 </tr>
39         <!-- TMPL_LOOP NAME="loop" -->
40                 <tr>
41                         <td>
42                                 <input type="checkbox" name="SEEN-<!-- TMPL_VAR NAME="itemnumber" -->" value="1" />
43                         </td>
44                         <td>
45                                 <!-- TMPL_VAR NAME="barcode" -->
46                         </td>
47                         <td>
48                                 <!-- TMPL_VAR NAME="itemcallnumber" -->
49                         </td>
50                         <td>
51                                 <!-- TMPL_VAR NAME="title" -->
52                         </td>
53                         <td>
54                                 <!-- TMPL_VAR NAME="author" -->
55                         </td>
56                 </tr>
57         <!-- /TMPL_LOOP -->
58         </table>
59         <input type="submit" value="Mark seen" class="submit">
60         </form>
61         
62         <!-- TMPL_IF NAME="offset" -->
63         <form method="post">
64                 <input type="hidden" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" />
65                 <input type="hidden" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" /> 
66                 <input type="hidden" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" />
67                 <input type="hidden" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" />
68                 <input type="hidden" name="offset" value="<!-- TMPL_VAR NAME="prevoffset" -->" />
69                 <input type="submit" value="&lt;&lt;&lt;" class="submit" />
70         </form>
71         <!-- /TMPL_IF -->
72         <!-- TMPL_IF NAME="nextoffset" -->
73         <form method="post">
74                 <input type="hidden" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" /> 
75                 <input type="hidden" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" />
76                 <input type="hidden" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" />
77                 <input type="hidden" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" />
78                 <input type="hidden" name="offset" value="<!-- TMPL_VAR NAME="nextoffset" -->" />
79                 <input type="submit" value="&gt;&gt;&gt;" class="submit" />
80         </form>
81         <!-- /TMPL_IF --><!-- /TMPL_IF -->
82 </div>
83 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->