Removing non-functional "Beginning Date" and "Ending Date" form fields
[koha.git] / koha-tmpl / opac-tmpl / css / en / opac-reserve.tmpl
1 <!-- TMPL_INCLUDE NAME="opac-top.inc" -->
2 <div id="mainbloc">
3 <h2>Reserve page for <i><!-- TMPL_VAR NAME="title" --></i> (<!-- TMPL_IF NAME="author" --><!-- TMPL_VAR NAME="author" -->,<!-- /TMPL_IF --> N&#176;<!-- TMPL_VAR name="biblionumber" -->)</h2>
4 <!-- TMPL_IF NAME="message" -->
5         <h2>Impossible to set reserve because </h2>
6         <ul>
7                 <!-- TMPL_IF NAME="too_much_oweing" --><li>you owe <!-- TMPL_VAR NAME="too_much_oweing" --></li><!-- /TMPL_IF -->
8                 <!-- TMPL_IF NAME="too_many_reserves" --><li>you cannot make more than <!-- TMPL_VAR NAME="too_many_reserves" --> reserves.</li><!-- /TMPL_IF -->
9                 <!-- TMPL_IF NAME="already_reserved" --><li>you already have a reserve placed on this item.</li><!-- /TMPL_IF -->
10                 <!-- TMPL_IF NAME="no_items_selected" --><li>you must select at least on item type!</li><!-- /TMPL_IF -->
11                 <!-- TMPL_IF NAME="no_branch_selected" --><li>you must select a branch for pickup!</li><!-- /TMPL_IF -->
12                 <!-- TMPL_IF name="GNA" --><li>You are gone without address. Reservation is forbidden. Please contact the library</li><!-- /TMPL_IF -->
13                 <!-- TMPL_IF name="lost" --><li>This card has been declared lost. Reserve impossible. Please contact the library</li><!-- /TMPL_IF -->
14                 <!-- TMPL_IF name="debarred" --><li>Your account is temporarily suspended. Please contact the library</li><!-- /TMPL_IF -->
15         </ul>
16 <!-- /TMPL_IF -->
17
18 <!-- TMPL_IF NAME="select_item_types" -->
19         <!-- The first time round you select which bibitems you want -->
20         <p> There are <b><!-- TMPL_VAR NAME="reservecount" --></b> reserves already on this item. </p>
21         <p>Please select which item types are ok for you. The first of these item that matches one of these types that becomes available will be set kept for you.</p>
22
23         <form action="/cgi-bin/koha/opac-reserve.pl" method="post">
24                 <input type="hidden" name="item_types_selected" value="1" />
25                 <input type="hidden" name="bib" value="<!-- TMPL_VAR name="biblionumber" -->" />
26                 <table cellspacing="0">
27                         <tr>
28                                 <th>Request</th>
29                                 <th>Item Type</th>
30                                 <th>Copies</th>
31                         </tr>
32                         <!-- TMPL_LOOP NAME="TYPES" -->
33                                 <tr>
34                                         <!-- TMPL_UNLESS NAME="notforloan" -->
35                                                 <td><input type="checkbox" name="itemtype" value="<!-- TMPL_VAR NAME="itemtype" -->" checked="checked" /></td>
36                                         <!-- TMPL_ELSE -->
37                                                 <td>Cannot be Reserved</td>
38                                         <!-- /TMPL_UNLESS -->
39                                         <td><!-- TMPL_VAR NAME="description" --></td>
40                                         <td><!-- TMPL_VAR NAME="copies" --></td>
41                                 </tr>
42                         <!-- /TMPL_LOOP -->
43                 </table>
44                 <p>Please select the branch from which you want to collect the item: <!-- TMPL_VAR NAME="CGIbranch" --></p>
45                                 
46                 <input class="button" type="submit" value="Submit" />
47         </form>
48 <!-- /TMPL_IF -->
49
50 <!-- TMPL_IF NAME="item_types_selected" -->
51 <!-- if the bibitems have already been selected -->
52         <p>Please confirm that you wish to request an item of these types:</p>
53
54         <form action="/cgi-bin/koha/opac-reserve.pl" method="post">
55                 <input type="hidden" name="place_reserve" value="1" />
56                 <input type="hidden" name="bib" value="<!-- TMPL_VAR NAME="biblionumber" -->" />
57                 <input type="hidden" name="required_date" value="<!-- TMPL_VAR NAME="required_date" -->" />
58                 <input type="hidden" name="expires_date" value="<!-- TMPL_VAR NAME="expires_date" -->" />
59                 <ul>
60                         <!-- TMPL_LOOP NAME="TYPES" -->
61                         <li><input type="hidden" name="itemtype" value="<!-- TMPL_VAR NAME="itemtype" -->" /><!-- TMPL_VAR NAME="description" --></li>
62                         <!-- /TMPL_LOOP -->
63                 </ul>
64                 Which is to be picked up from
65                 <ul>
66                         <li>
67                                 <!-- TMPL_VAR NAME="branchname" -->
68                         </li>
69                 </ul>
70                 <input type="hidden" name="branch" value="<!-- TMPL_VAR NAME="branch" -->" />
71                 <!-- TMPL_IF NAME="fee" -->
72                         <p>Note there will be a reserve charge of <b>$<!-- TMPL_VAR NAME="fee" --></b></p>
73                 <!-- /TMPL_IF -->
74                 <input class="button" type="submit" value="Place Reserve" />
75         </form>
76 <!-- /TMPL_IF -->
77 </div>
78 <!-- TMPL_INCLUDE NAME="opac-bottom.inc" -->