Lines 113-119
Link Here
|
113 |
|
113 |
|
114 |
[% ELSIF query_type == 'check_out' and !whole.error %] |
114 |
[% ELSIF query_type == 'check_out' and !whole.error %] |
115 |
[% IF !whole.stage || whole.stage == 'form' %] |
115 |
[% IF !whole.stage || whole.stage == 'form' %] |
116 |
<h1 id="ill-issue-title">Issue requested item to [% request.patron.firstname %] [% request.patron.surname %]</h1> |
116 |
<h1 id="ill-issue-title">Issue requested item to [% INCLUDE 'patron-title.inc' patron = request.patron %]</h1> |
117 |
[% IF !request.biblio_id || request.biblio_id.length == 0 %] |
117 |
[% IF !request.biblio_id || request.biblio_id.length == 0 %] |
118 |
<div class="alert">This item cannot be issued as it has no biblio record associated with it</div> |
118 |
<div class="alert">This item cannot be issued as it has no biblio record associated with it</div> |
119 |
[% END %] |
119 |
[% END %] |
Lines 163-169
Link Here
|
163 |
[% IF whole.value.errors.inhouse %] |
163 |
[% IF whole.value.errors.inhouse %] |
164 |
<span class="required">You must choose a valid patron</span> |
164 |
<span class="required">You must choose a valid patron</span> |
165 |
[% END %] |
165 |
[% END %] |
166 |
<div class="hint">If you do not wish to check out the item to [% request.patron.firstname | html %] [% request.patron.surname | html %] and would rather issue it to an in-house statistical patron, choose the patron here</div> |
166 |
<div class="hint">If you do not wish to check out the item to [% INCLUDE 'patron-title.inc' patron = request.patron %] and would rather issue it to an in-house statistical patron, choose the patron here</div> |
167 |
</li> |
167 |
</li> |
168 |
<li class="ill_checkout_item_type"> |
168 |
<li class="ill_checkout_item_type"> |
169 |
<label for="item_type" class="ill_checkout_item_type_label required">Item type:</label> |
169 |
<label for="item_type" class="ill_checkout_item_type_label required">Item type:</label> |
Lines 244-250
Link Here
|
244 |
<ol> |
244 |
<ol> |
245 |
<li> |
245 |
<li> |
246 |
<label>Checked out to:</label> |
246 |
<label>Checked out to:</label> |
247 |
[% whole.value.patron.firstname | html %] [% whole.value.patron.surname | html %] |
247 |
[% INCLUDE 'patron-title.inc' patron = whole.value.patron %] |
248 |
</li> |
248 |
</li> |
249 |
<li> |
249 |
<li> |
250 |
<label>Due date:</label> |
250 |
<label>Due date:</label> |
Lines 720-726
Link Here
|
720 |
</script> |
720 |
</script> |
721 |
[% INCLUDE 'ill-list-table-strings.inc' %] |
721 |
[% INCLUDE 'ill-list-table-strings.inc' %] |
722 |
[% Asset.js("js/ill-list-table.js") | $raw %] |
722 |
[% Asset.js("js/ill-list-table.js") | $raw %] |
723 |
[% Asset.js("js/ill-check-out.js") | $raw %] |
|
|
724 |
[% END %] |
723 |
[% END %] |
725 |
|
724 |
|
726 |
[% TRY %] |
725 |
[% TRY %] |
727 |
- |
|
|