Lines 252-257
Link Here
|
252 |
</fieldset> |
252 |
</fieldset> |
253 |
[% END %] |
253 |
[% END %] |
254 |
</form> |
254 |
</form> |
|
|
255 |
[% ELSIF op == 'unauth_view' %] |
256 |
<div class="alert alert-success" role="alert">Your request has been placed. Please check your email for further instructions.</div> |
257 |
<h1>View interlibrary loan request</h1> |
258 |
[% INCLUDE messages %] |
259 |
[% status = request.status %] |
260 |
<fieldset class="rows"> |
261 |
<legend id="library_legend">Details from library</legend> |
262 |
<ol> |
263 |
[% type = request.get_type %] |
264 |
<li> |
265 |
<label for="request_id">Request ID:</label> |
266 |
[% request.id | html %] |
267 |
</li> |
268 |
<li> |
269 |
<label for="backend">Requested from:</label> |
270 |
[% request.backend | html %] |
271 |
</li> |
272 |
[% IF request.biblio_id %] |
273 |
<li> |
274 |
<label for="biblio">Requested item:</label> |
275 |
<a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% request.biblio_id | uri %]">View the requested item</a> |
276 |
</li> |
277 |
[% END %] |
278 |
<li> |
279 |
<label for="branchcode">Collection library:</label> |
280 |
[% Branches.GetName(request.branchcode) | html %] |
281 |
</li> |
282 |
<li> |
283 |
<label for="status">Status:</label> |
284 |
[% request.status_alias ? request.statusalias.lib_opac : request.capabilities.$status.name | html %] |
285 |
</li> |
286 |
<li> |
287 |
<label for="medium">Request type:</label> |
288 |
[% IF type %][% type | html %][% ELSE %]<span>N/A</span>[% END %] |
289 |
</li> |
290 |
<li> |
291 |
<label for="placed">Request placed:</label> |
292 |
[% request.placed | $KohaDates %] |
293 |
</li> |
294 |
<li> |
295 |
<label for="updated">Last updated:</label> |
296 |
[% request.updated | $KohaDates %] |
297 |
</li> |
298 |
<li> |
299 |
<label for="notesopac">Notes:</label> |
300 |
[% request.notesopac | html %] |
301 |
</li> |
302 |
</ol> |
303 |
</fieldset> |
304 |
<div id="ill-supplier-metadata" class="rows"> |
305 |
<legend id="backend_legend">Details from [% request.backend | html %]</legend> |
306 |
[% FOREACH meta IN request.metadata %] |
307 |
<div class="requestattr-[% meta.key | replace(' ', '_') | html %]"> |
308 |
<span class="label">[% meta.key | html %]:</span> |
309 |
<span class="value">[% IF meta.value %][% meta.value | html %][% ELSE %]N/A[% END %]</span> |
310 |
</div> |
311 |
[% END %] |
312 |
</div> |
255 |
[% ELSIF op == 'availability' %] |
313 |
[% ELSIF op == 'availability' %] |
256 |
<h1>Interlibrary loan item availability</h1> |
314 |
<h1>Interlibrary loan item availability</h1> |
257 |
<div id="results"> |
315 |
<div id="results"> |