css & html fixes
[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="ACCEPTED" -->
62                                                         <option value="ACCEPTED" selected>Accepted</option>
63                                                 <!-- TMPL_ELSE -->
64                                                         <option value="ACCEPTED">Accepted</option>
65                                                 <!-- /TMPL_IF -->
66                                                 <!-- TMPL_IF name="ORDERED" -->
67                                                         <option value="ORDERED" selected>Ordered</option>
68                                                 <!-- TMPL_ELSE -->
69                                                         <option value="ORDERED">Ordered</option>
70                                                 <!-- /TMPL_IF -->
71                                                 <!-- TMPL_IF name="REJECTED" -->
72                                                         <option value="REJECTED" selected>Rejected</option>
73                                                 <!-- TMPL_ELSE -->
74                                                         <option value="REJECTED">Rejected</option>
75                                                 <!-- /TMPL_IF -->
76                                                 <!-- TMPL_IF name="AVAILABLE" -->
77                                                         <option value="AVAILABLE" selected>Available</option>
78                                                 <!-- TMPL_ELSE -->
79                                                         <option value="AVAILABLE">Available</option>
80                                                 <!-- /TMPL_IF -->
81                                         </select>
82                                 </th>
83                                 <th>
84                                         <select name="suggestedbyme">
85                                                 <option value="1" <!-- TMPL_IF name="suggestedbyme" -->selected<!-- /TMPL_IF -->>Me</option>
86                                                 <option value="0" <!-- TMPL_UNLESS name="suggestedbyme" -->selected<!-- /TMPL_UNLESS -->>Anybody</option>
87                                         </select>
88                                 </th>
89                                 <th>
90                                         &nbsp;
91                                 </th>
92                                 <th>
93                                         <input type="submit" class="button" value="Set Filter">
94                                 </th>
95                         </form>
96                 </tr>
97                 <form>
98                         <input type="hidden" name="op" value="delete_confirm">
99                 <!-- TMPL_LOOP NAME="suggestions_loop" -->
100                         <tr>
101                                 <td>
102                                         <input type="checkbox" name="delete_field" value="<!--TMPL_VAR name="suggestionid" -->">
103                                 </td>
104                                 <td <!-- TMPL_IF name="even" -->class="hilighted"<!-- /TMPL_IF -->>
105                                         <!-- TMPL_VAR NAME="title" -->
106                                 </td>
107                                 <td <!-- TMPL_IF name="even" -->class="hilighted"<!-- /TMPL_IF -->>
108                                         <!-- TMPL_VAR NAME="author" -->
109                                 </td>
110                                 <td align="center"<!-- TMPL_IF name="even" --> class="hilighted"<!-- /TMPL_IF -->>
111                                         <!-- TMPL_VAR NAME="copyrightdate" -->
112                                 </td>
113                                 <td align="center" <!-- TMPL_IF name="even" --> class="hilighted"<!-- /TMPL_IF -->>
114                                         <!-- TMPL_VAR name="publishercode" -->
115                                 </td>
116                                 <td <!-- TMPL_IF name="even" -->class="hilighted"<!-- /TMPL_IF -->>
117                                         <!-- TMPL_IF name="ASKED" -->Asked<!-- /TMPL_IF -->
118                                         <!-- TMPL_IF name="ACCEPTED" -->Accepted, will be ordered soon<!-- /TMPL_IF -->
119                                         <!-- TMPL_IF name="ORDERED" -->Ordered by the library<!-- /TMPL_IF -->
120                                         <!-- TMPL_IF name="REJECTED" -->Suggestion rejected : won't be buy<!-- /TMPL_IF -->
121                                         <!-- TMPL_IF name="AVAILABLE" -->Recieved by the library<!-- /TMPL_IF -->
122                                 </td>
123                                 <td <!-- TMPL_IF name="even" -->class="hilighted"<!-- /TMPL_IF -->>
124                                         <!-- TMPL_VAR name="surnamesuggestedby" --><!-- TMPL_IF name="firstnamesuggestedby" -->,<!-- /TMPL_IF --> <!-- TMPL_VAR name="firstnamesuggestedby" -->
125                                 </td>
126                                 <td <!-- TMPL_IF name="even" -->class="hilighted"<!-- /TMPL_IF -->>
127                                         <!-- TMPL_VAR name="usermanagedby" --><!-- TMPL_IF name="firstnamemanagedby" -->,<!-- /TMPL_IF --> <!-- TMPL_VAR name="firstnamemanagedby" -->
128                                 </td>
129                                 <td <!-- TMPL_IF name="even" -->class="hilighted"<!-- /TMPL_IF -->>
130                                         <!-- TMPL_VAR name="note" -->
131                                 </td>
132                         </tr>
133                 <!-- /TMPL_LOOP -->
134                 <tr>
135                         <td>
136                                 <input type="submit" class="button" value="Delete">
137                         </td>
138                         <td> &nbsp; </td>
139                         <td> &nbsp; </td>
140                         <td> &nbsp; </td>
141                         <td> &nbsp; </td>
142                         <td> &nbsp; </td>
143                         <td> &nbsp; </td>
144                         <td> &nbsp; </td>
145                         <td> &nbsp; </td>
146                 </tr>
147                 </form>
148         </table>
149         <form>
150                 <input type="hidden" name="op" value="add">
151                 <input type="submit" class="button" value="Enter a new suggestion">
152         <br />
153         <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>
154 <!-- /TMPL_IF -->
155 </div>
156 <!-- TMPL_INCLUDE NAME="opac-bottom.inc" -->