minor fixes (to get less warning during translation)
[koha.git] / koha-tmpl / opac-tmpl / css / en / opac-suggestions.tmpl
1 <!-- TMPL_INCLUDE NAME="opac-top.inc" -->
2 <div id="mainbloc">
3 <!-- TMPL_IF name="op_add" -->
4         <h1>Enter a new suggestion</h1>
5         <p>Fill this form to suggest the library a new acquisition. You will be mailed when the library treats you suggestion</p>
6         <p>No fields are mandatory. Fill whatever you know. The "Note" field can be used for whatever you want</p>
7         <form>
8                 <input type="hidden" name="op" value="add_confirm">
9                 <p><label>Title</label><input type="text" name="title" size=60 maxlentgh=80></p>
10                 <p><label>Author</label><input type="text" name="author" size=60 maxlength=80></p>
11                 <p><label>Copyright date</label><input type="text" name="copyrightdate" size="5" maxlength="4"></p>
12                 <p><label>Publisher</label><input type="text" name="publishercode" size="60" maxlength="80"></p>
13                 <p><label>Volume</label><input type="text" name="volumedesc" size="60" maxlength="80"></p>
14                 <p><label>Publication year</label><input type="text" name="publicationyear" size="5" maxlength="4"></p>
15                 <p><label>Publication place</label><input type="text" name="place" size="60" maxlength="80"></p>
16                 <p><label>ISBN/ISSN</label><input type="text" name="isbn" size="14" maxlength="10"></p>
17                 <p><label>Note</label><textarea name="note" rows="10" cols="60"></textarea></p>
18                 <p><label>&nbsp;</label><input type="submit" value="Send suggestion to the library staff" class="button"></p>
19         </form>
20 <!-- /TMPL_IF -->
21
22 <!-- TMPL_IF name="op_else" -->
23         <h1>Suggestions</h1>
24         <table>
25                 <tr>
26                         <th>&nbsp;</th>
27                         <th>Title</th>
28                         <th>Author</th>
29                         <th>&copy;</th>
30                         <th>Publisher</th>
31                         <th>Status</th>
32                         <th>Suggested by</th>
33                         <th>Managed by</th>
34                         <th>Note</th>
35                 </tr>
36                 <tr>
37                         <form>
38                                 <th>
39                                         Filter on
40                                 </th>
41                                 <th>
42                                         <input type="text" name="title" value="<!-- TMPL_VAR name="title"-->">
43                                 </th>
44                                 <th>
45                                         <input type="text" name="author" value="<!-- TMPL_VAR name="author" -->">
46                                 </th>
47                                 <th>
48                                         &nbsp;
49                                 </th>
50                                 <th>
51                                         <input type="text" name="publishercode" value="<!-- TMPL_VAR name="publishercode"-->">
52                                 </th>
53                                 <th>
54                                         <select name="status">
55                                                 <option value="">Any</option>
56                                                 <!-- TMPL_IF name="ASKED" -->
57                                                         <option value="ASKED" selected>Asked</option>
58                                                 <!-- TMPL_ELSE -->
59                                                         <option value="ASKED">Asked</option>
60                                                 <!-- /TMPL_IF -->
61                                                 <!-- TMPL_IF name="ORDERED" -->
62                                                         <option value="ORDERED" selected>Ordered</option>
63                                                 <!-- TMPL_ELSE -->
64                                                         <option value="ORDERED">Ordered</option>
65                                                 <!-- /TMPL_IF -->
66                                                 <!-- TMPL_IF name="REJECTED" -->
67                                                         <option value="REJECTED" selected>Rejected</option>
68                                                 <!-- TMPL_ELSE -->
69                                                         <option value="REJECTED">Rejected</option>
70                                                 <!-- /TMPL_IF -->
71                                                 <!-- TMPL_IF name="AVAILABLE" -->
72                                                         <option value="AVAILABLE" selected>Available</option>
73                                                 <!-- TMPL_ELSE -->
74                                                         <option value="AVAILABLE">Available</option>
75                                                 <!-- /TMPL_IF -->
76                                         </select>
77                                 </th>
78                                 <th>
79                                         <select name="suggestedbyme">
80                                                 <option value="1" <!-- TMPL_IF name="suggestedbyme" -->selected<!-- /TMPL_IF -->>Me</option>
81                                                 <option value="0" <!-- TMPL_UNLESS name="suggestedbyme" -->selected<!-- /TMPL_UNLESS -->>Anybody</option>
82                                         </select>
83                                 </th>
84                                 <th>
85                                         &nbsp;
86                                 </th>
87                                 <th>
88                                         <input type="submit" class="button" value="Set Filter">
89                                 </th>
90                         </form>
91                 </tr>
92                 <form>
93                         <input type="hidden" name="op" value="delete_confirm">
94                 <!-- TMPL_LOOP NAME="suggestions_loop" -->
95                         <tr>
96                                 <td>
97                                         <input type="checkbox" name="delete_field" value="<!--TMPL_VAR name="suggestionnumber" -->">
98                                 </td>
99                                 <td <!-- TMPL_IF name="even" -->class="hilighted"<!-- /TMPL_IF -->>
100                                         <!-- TMPL_VAR NAME="title" -->
101                                 </td>
102                                 <td <!-- TMPL_IF name="even" -->class="hilighted"<!-- /TMPL_IF -->>
103                                         <!-- TMPL_VAR NAME="author" -->
104                                 </td>
105                                 <td align="center"<!-- TMPL_IF name="even" --> class="hilighted"<!-- /TMPL_IF -->>
106                                         <!-- TMPL_VAR NAME="copyrightdate" -->
107                                 </td>
108                                 <td align="center" <!-- TMPL_IF name="even" --> class="hilighted"<!-- /TMPL_IF -->>
109                                         <!-- TMPL_VAR name="publishercode" -->
110                                 </td>
111                                 <td <!-- TMPL_IF name="even" -->class="hilighted"<!-- /TMPL_IF -->>
112                                         <!-- TMPL_IF name="ASKED" -->Asked<!-- /TMPL_IF -->
113                                         <!-- TMPL_IF name="ORDERED" -->Ordered by the library<!-- /TMPL_IF -->
114                                         <!-- TMPL_IF name="REJECTED" -->Suggestion rejected : won't be buy<!-- /TMPL_IF -->
115                                         <!-- TMPL_IF name="AVAILABLE" -->Available in the library<!-- /TMPL_IF -->
116                                 </td>
117                                 <td <!-- TMPL_IF name="even" -->class="hilighted"<!-- /TMPL_IF -->>
118                                         <!-- TMPL_VAR name="surnamesuggestedby" --><!-- TMPL_IF name="firstnamesuggestedby" -->,<!-- /TMPL_IF --> <!-- TMPL_VAR name="firstnamesuggestedby" -->
119                                 </td>
120                                 <td <!-- TMPL_IF name="even" -->class="hilighted"<!-- /TMPL_IF -->>
121                                         <!-- TMPL_VAR name="usermanagedby" --><!-- TMPL_IF name="firstnamemanagedby" -->,<!-- /TMPL_IF --> <!-- TMPL_VAR name="firstnamemanagedby" -->
122                                 </td>
123                                 <td <!-- TMPL_IF name="even" -->class="hilighted"<!-- /TMPL_IF -->>
124                                         <!-- TMPL_VAR name="note" -->
125                                 </td>
126                         </tr>
127                 <!-- /TMPL_LOOP -->
128                 <tr>
129                         <td>
130                                 <input type="submit" class="button" value="Delete">
131                         </td>
132                         <td> &nbsp; </td>
133                         <td> &nbsp; </td>
134                         <td> &nbsp; </td>
135                         <td> &nbsp; </td>
136                         <td> &nbsp; </td>
137                         <td> &nbsp; </td>
138                         <td> &nbsp; </td>
139                         <td> &nbsp; </td>
140                 </tr>
141                 </form>
142         </table>
143         <form>
144                 <input type="hidden" name="op" value="add">
145                 <input type="submit" class="button" value="Enter a new suggestion">
146         <br />
147         <p>Note : if you ask suggestion done by anybody, the result will contain only new suggestions. Suggestions treated by a librarian will not be shown.</p>
148 <!-- /TMPL_IF -->
149 </div>
150 <!-- TMPL_INCLUDE NAME="opac-bottom.inc" -->