Removing hardcoded default template image link
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / reports / inventory.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Reports --<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
2 <!-- Additions to enable Calendar system -->
3 <link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR name="themelang" -->/includes/calendar/calendar-system.css">
4 <!-- End of additions --><!-- Additions to enable Calendar system -->
5 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/includes/calendar/calendar.js"></script>
6 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/includes/calendar/calendar-en.js"></script>
7 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/includes/calendar/calendar-setup.js"></script>
8 <!-- End of additions -->
9
10         <h1>Inventory/Stocktaking</h1>
11         <form method="post">
12                 <h2>Select items you want to check</h2>
13                 <p>
14                         Item Location (items.itemcallnumber) between 
15                                 <input type="text" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" /> 
16                         and 
17                                 <input type="text" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" />
18                 </p>
19                 <p>not seen since
20                         <input type="text" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" />
21                 </p>
22                 <p>show</label>
23                         <input type="text" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" maxlength="5" size="5" />
24                          items beginning at offset
25                         <input type="text" name="offset" value="<!-- TMPL_VAR NAME="offset" -->" size="5" maxlength="5" />
26                 </p>
27                 <p>
28                         <input type="submit" value="OK" />
29                 </p>
30         </form>
31         
32         <form method="post">
33         <input type="hidden" name="markseen" value="1" />
34         <input type="hidden" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" />
35         <input type="hidden" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" />
36         <input type="hidden" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" />
37         <input type="hidden" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" />
38         <input type="hidden" name="offset" value="<!-- TMPL_VAR NAME="offset" -->" />
39         <!-- TMPL_IF NAME="loop" -->
40         <table>
41                 <tr>
42                         <th>Seen</th>
43                         <th>Barcode</th>
44                         <th>Call number</th>
45                         <th>Title</th>
46                         <th>Author</th>
47                 </tr>
48         <!-- TMPL_LOOP NAME="loop" -->
49                 <tr>
50                         <td>
51                                 <input type="checkbox" name="SEEN-<!-- TMPL_VAR NAME="itemnumber" -->" value="1" />
52                         </td>
53                         <td>
54                                 <!-- TMPL_VAR NAME="barcode" -->
55                         </td>
56                         <td>
57                                 <!-- TMPL_VAR NAME="itemcallnumber" -->
58                         </td>
59                         <td>
60                                 <!-- TMPL_VAR NAME="title" -->
61                         </td>
62                         <td>
63                                 <!-- TMPL_VAR NAME="author" -->
64                         </td>
65                 </tr>
66         <!-- /TMPL_LOOP -->
67         </table>
68         <input type="submit" value="Mark seen" />
69         </form>
70         <!-- /TMPL_IF -->
71         <!-- TMPL_IF NAME="offset" -->
72         <form method="post">
73                 <input type="hidden" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" />
74                 <input type="hidden" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" />
75                 <input type="hidden" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" />
76                 <input type="hidden" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" />
77                 <input type="hidden" name="offset" value="<!-- TMPL_VAR NAME="prevoffset" -->" />
78                 <input type="submit" value="&lt;&lt;&lt;" />
79         </form>
80         <!-- /TMPL_IF -->
81         <!-- TMPL_IF NAME="nextoffset" -->
82         <form method="post">
83                 <input type="hidden" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" />
84                 <input type="hidden" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" />
85                 <input type="hidden" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" />
86                 <input type="hidden" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" />
87                 <input type="hidden" name="offset" value="<!-- TMPL_VAR NAME="nextoffset" -->" />
88                 <input type="submit" value="&gt;&gt;&gt;" />
89         </form>
90         <!-- /TMPL_IF -->
91
92 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->