Lines 181-187
Link Here
|
181 |
[% FOREACH hold IN hold_move_successes %] |
181 |
[% FOREACH hold IN hold_move_successes %] |
182 |
<li> |
182 |
<li> |
183 |
<label>Hold ID: </label> |
183 |
<label>Hold ID: </label> |
184 |
<span>[% hold.hold_id %]</span> |
184 |
<span>[% hold.hold_id | html %]</span> |
185 |
<span> - Moved from [%- INCLUDE 'biblio-title.inc' biblio=hold.original_biblio link = 1 -%] to [%- INCLUDE 'biblio-title.inc' biblio=hold.target_biblio link = 1 -%]</span> |
185 |
<span> - Moved from [%- INCLUDE 'biblio-title.inc' biblio=hold.original_biblio link = 1 -%] to [%- INCLUDE 'biblio-title.inc' biblio=hold.target_biblio link = 1 -%]</span> |
186 |
</li> |
186 |
</li> |
187 |
[% END %] |
187 |
[% END %] |
Lines 195-201
Link Here
|
195 |
[% FOREACH fail IN hold_move_failures %] |
195 |
[% FOREACH fail IN hold_move_failures %] |
196 |
<li> |
196 |
<li> |
197 |
<label>Hold ID: </label> |
197 |
<label>Hold ID: </label> |
198 |
<span>[% fail.hold_id %]</span> |
198 |
<span>[% fail.hold_id | html %]</span> |
199 |
[% SWITCH fail.error %] |
199 |
[% SWITCH fail.error %] |
200 |
[% CASE 'cannotReserveFromOtherBranches' %] |
200 |
[% CASE 'cannotReserveFromOtherBranches' %] |
201 |
<span>Target item cannot be reserved from other branches</span> |
201 |
<span>Target item cannot be reserved from other branches</span> |
202 |
- |
|
|