|
Lines 27-37
Link Here
|
| 27 |
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/catalogue/search.pl">Catalog</a> › Confirm holds</div> |
27 |
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/catalogue/search.pl">Catalog</a> › Confirm holds</div> |
| 28 |
[% END %] |
28 |
[% END %] |
| 29 |
|
29 |
|
| 30 |
<div id="doc3" class="yui-t2"> |
30 |
<div class="main container-fluid"> |
|
|
31 |
<div class="row"> |
| 32 |
[% IF ( multi_hold ) # No sidebar menu when placing multiple holds %] |
| 33 |
<div class="col-md-10 col-md-offset-1"> |
| 34 |
[% ELSE %] |
| 35 |
<div class="col-sm-10 col-sm-push-2"> |
| 36 |
[% END %] |
| 37 |
<main> |
| 31 |
|
38 |
|
| 32 |
<div id="bd"> |
|
|
| 33 |
<div id="yui-main"> |
| 34 |
<div class="yui-b"> |
| 35 |
[% IF ( noitems ) %] |
39 |
[% IF ( noitems ) %] |
| 36 |
<div class="dialog alert"> |
40 |
<div class="dialog alert"> |
| 37 |
[%IF (multi_hold) %] |
41 |
[%IF (multi_hold) %] |
|
Lines 312-328
Link Here
|
| 312 |
<td> |
316 |
<td> |
| 313 |
[% IF itemloo.force_hold_level == 'record' # Patron has placed a record level hold previously for this record %] |
317 |
[% IF itemloo.force_hold_level == 'record' # Patron has placed a record level hold previously for this record %] |
| 314 |
<span class="error"> |
318 |
<span class="error"> |
| 315 |
<i class="fa fa-times fa-lg" alt="Cannot be put on hold"></i> |
319 |
<i class="fa fa-times fa-lg" title="Cannot be put on hold"></i> |
| 316 |
Hold must be record level |
320 |
Hold must be record level |
| 317 |
</span> |
321 |
</span> |
| 318 |
[% ELSIF ( itemloo.available ) %] |
322 |
[% ELSIF ( itemloo.available ) %] |
| 319 |
<input type="radio" name="checkitem" value="[% itemloo.itemnumber | html %]" /> |
323 |
<input type="radio" name="checkitem" value="[% itemloo.itemnumber | html %]" /> |
| 320 |
[% ELSIF ( itemloo.override ) %] |
324 |
[% ELSIF ( itemloo.override ) %] |
| 321 |
<input type="radio" name="checkitem" class="needsoverride" value="[% itemloo.itemnumber | html %]" /> |
325 |
<input type="radio" name="checkitem" class="needsoverride" value="[% itemloo.itemnumber | html %]" /> |
| 322 |
<i class="fa fa-exclamation-triangle fa-lg" style="color:gold" alt="Requires override of hold policy"/></i> |
326 |
<i class="fa fa-exclamation-triangle fa-lg" style="color:gold" title="Requires override of hold policy"/></i> |
| 323 |
[% ELSE %] |
327 |
[% ELSE %] |
| 324 |
<span class="error"> |
328 |
<span class="error"> |
| 325 |
<i class="fa fa-times fa-lg" alt="Cannot be put on hold"></i> |
329 |
<i class="fa fa-times fa-lg" title="Cannot be put on hold"></i> |
| 326 |
[% IF itemloo.not_holdable %] |
330 |
[% IF itemloo.not_holdable %] |
| 327 |
[% IF itemloo.not_holdable == 'damaged' %] |
331 |
[% IF itemloo.not_holdable == 'damaged' %] |
| 328 |
Item damaged |
332 |
Item damaged |
|
Lines 644-659
Link Here
|
| 644 |
</form> |
648 |
</form> |
| 645 |
[% END %] |
649 |
[% END %] |
| 646 |
[% END %] |
650 |
[% END %] |
| 647 |
</div> |
|
|
| 648 |
</div> |
| 649 |
|
651 |
|
| 650 |
<div class="yui-b"> |
652 |
</main> |
| 651 |
[% UNLESS ( multi_hold ) %] |
653 |
|
| 652 |
[% INCLUDE 'biblio-view-menu.inc' %] |
654 |
[% IF ( multi_hold ) # No sidebar menu when placing multiple holds %] |
| 653 |
[% END %] |
655 |
</div> <!-- /.col-md-10.col-md-offset-1 --> |
|
|
656 |
[% ELSE %] |
| 657 |
</div> <!-- /.col-sm-10.col-sm-push-2 --> |
| 658 |
<div class="col-sm-2 col-sm-pull-10"> |
| 659 |
<aside> |
| 660 |
[% INCLUDE 'biblio-view-menu.inc' %] |
| 661 |
</aside> |
| 662 |
</div> <!-- /.col-sm-2.col-sm-pull-10 --> |
| 663 |
[% END %] |
| 664 |
</div> <!-- /.row --> |
| 654 |
|
665 |
|
| 655 |
</div> |
|
|
| 656 |
</div> |
| 657 |
|
666 |
|
| 658 |
[% MACRO jsinclude BLOCK %] |
667 |
[% MACRO jsinclude BLOCK %] |
| 659 |
[% INCLUDE 'datatables.inc' %] |
668 |
[% INCLUDE 'datatables.inc' %] |
| 660 |
- |
|
|