Adding page heading
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / reports / inventory.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Reports &rsaquo; Inventory/Stocktaking</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 </head>
5 <body>
6 <!-- TMPL_INCLUDE NAME="header.inc" -->
7 <!-- TMPL_INCLUDE NAME="cat-search.inc" -->
8
9 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> &rsaquo; Inventory/Stocktaking</div>
10
11 <div id="doc3" class="yui-t2">
12    
13    <div id="bd">
14         <div id="yui-main">
15         <div class="yui-b">
16
17         <h1>Inventory/Stocktaking</h1>
18         <form method="post" action="/cgi-bin/koha/reports/inventory.pl">
19                 <h2>Select items you want to check</h2>
20                 <p>
21                         <label for="minlocation">Item Location (items.itemcallnumber) between</label> 
22                                 <input type="text" name="minlocation" id="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" /> 
23                         <label for="maxlocation">and</label> 
24                                 <input type="text" name="maxlocation" id="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" />
25                 </p>
26                 <p><label for="datelastseen">not seen since</label>
27                         <input type="text" name="datelastseen" id="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" />
28                 </p>
29                 <p><label for="pagesize">show</label>
30                         <input type="text" name="pagesize" id="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" maxlength="5" size="5" />
31                         <label for="offset"> items beginning at offset</label>
32                         <input type="text" name="offset" id="offset" value="<!-- TMPL_VAR NAME="offset" -->" size="5" maxlength="5" />
33                 </p>
34                 <p>
35                         <input type="submit" value="OK" />
36                 </p>
37         </form>
38
39         <!-- TMPL_IF NAME="loop" -->    
40         <form method="post" action="/cgi-bin/koha/reports/inventory.pl">
41         <input type="hidden" name="markseen" value="1" />
42         <input type="hidden" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" />
43         <input type="hidden" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" />
44         <input type="hidden" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" />
45         <input type="hidden" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" />
46         <input type="hidden" name="offset" value="<!-- TMPL_VAR NAME="offset" -->" />
47         <table>
48                 <tr>
49                         <th>Seen</th>
50                         <th>Barcode</th>
51                         <th>Call number</th>
52                         <th>Title</th>
53                         <th>Author</th>
54                 </tr>
55         <!-- TMPL_LOOP NAME="loop" -->
56                 <tr>
57                         <td>
58                                 <input type="checkbox" name="SEEN-<!-- TMPL_VAR NAME="itemnumber" -->" value="1" />
59                         </td>
60                         <td>
61                                 <!-- TMPL_VAR NAME="barcode" -->
62                         </td>
63                         <td>
64                                 <!-- TMPL_VAR NAME="itemcallnumber" -->
65                         </td>
66                         <td>
67                                 <!-- TMPL_VAR NAME="title" -->
68                         </td>
69                         <td>
70                                 <!-- TMPL_VAR NAME="author" -->
71                         </td>
72                 </tr>
73         <!-- /TMPL_LOOP -->
74         </table>
75         <input type="submit" value="Mark seen" />
76         </form>
77         <!-- /TMPL_IF -->
78         
79         <!-- TMPL_IF NAME="offset" -->
80         <form method="post" action="/cgi-bin/koha/reports/inventory.pl">
81                 <input type="hidden" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" />
82                 <input type="hidden" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" />
83                 <input type="hidden" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" />
84                 <input type="hidden" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" />
85                 <input type="hidden" name="offset" value="<!-- TMPL_VAR NAME="prevoffset" -->" />
86                 <input type="submit" value="&lt;&lt;&lt;" />
87         </form>
88         <!-- /TMPL_IF -->
89         
90         <!-- TMPL_IF NAME="nextoffset" -->
91         <form method="post" action="/cgi-bin/koha/reports/inventory.pl">
92                 <input type="hidden" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" />
93                 <input type="hidden" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" />
94                 <input type="hidden" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" />
95                 <input type="hidden" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" />
96                 <input type="hidden" name="offset" value="<!-- TMPL_VAR NAME="nextoffset" -->" />
97                 <input type="submit" value="&gt;&gt;&gt;" />
98         </form>
99         <!-- /TMPL_IF -->
100
101 </div>
102 </div>
103 <div class="yui-b">
104 <!-- TMPL_INCLUDE NAME="reports-menu.inc" -->
105 </div>
106 </div>
107 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->