Lines 9-22
Link Here
|
9 |
</div> |
9 |
</div> |
10 |
<div class="modal-body"> |
10 |
<div class="modal-body"> |
11 |
<div id="booking_result"></div> |
11 |
<div id="booking_result"></div> |
12 |
<fieldset class="rows"> |
12 |
<fieldset class="brief"> |
13 |
<input type="hidden" name="biblio_id" id="booking_id"> |
13 |
<input type="hidden" name="biblio_id" id="booking_id"> |
14 |
<input type="hidden" name="biblio_id" id="booking_biblio_id"> |
14 |
<input type="hidden" name="biblio_id" id="booking_biblio_id"> |
15 |
<input type="hidden" name="start_date" id="booking_start_date"> |
15 |
<input type="hidden" name="start_date" id="booking_start_date"> |
16 |
<input type="hidden" name="end_date" id="booking_end_date"> |
16 |
<input type="hidden" name="end_date" id="booking_end_date"> |
17 |
<ol> |
17 |
<ol> |
18 |
<li> |
18 |
<li> |
19 |
<div class="hint">Enter patron card number or partial name:</div> |
|
|
20 |
<label class="required" for="booking_patron_id">Patron: </label> |
19 |
<label class="required" for="booking_patron_id">Patron: </label> |
21 |
<select name="booking_patron_id" id="booking_patron_id" required="required"> |
20 |
<select name="booking_patron_id" id="booking_patron_id" required="required"> |
22 |
<option></option> |
21 |
<option></option> |
Lines 24-29
Link Here
|
24 |
<option value="[% borrowernumber | uri %]" selected="selected">[% patron.firstname | html %] [% patron.surname | html %] ([% patron.cardnumber | html %] )</option> |
23 |
<option value="[% borrowernumber | uri %]" selected="selected">[% patron.firstname | html %] [% patron.surname | html %] ([% patron.cardnumber | html %] )</option> |
25 |
[% END %] |
24 |
[% END %] |
26 |
</select> |
25 |
</select> |
|
|
26 |
<div class="hint">Enter patron card number or partial name</div> |
27 |
</li> |
27 |
</li> |
28 |
<label for="booking_item_id">Item: </label> |
28 |
<label for="booking_item_id">Item: </label> |
29 |
<select name="booking_item_id" id="booking_item_id" disabled="true"> |
29 |
<select name="booking_item_id" id="booking_item_id" disabled="true"> |
30 |
- |
|
|