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