Lines 166-171
Link Here
|
166 |
|
166 |
|
167 |
[% IF Koha.Preference('AllowPatronToControlAutorenewal') %] |
167 |
[% IF Koha.Preference('AllowPatronToControlAutorenewal') %] |
168 |
<form id="autorenewal_option" action="/cgi-bin/koha/opac-user.pl" method="post"> |
168 |
<form id="autorenewal_option" action="/cgi-bin/koha/opac-user.pl" method="post"> |
|
|
169 |
<legend class="sr-only">Auto-renewal</legend> |
169 |
<label for="yes-autorenew_checkouts"> |
170 |
<label for="yes-autorenew_checkouts"> |
170 |
Allow auto-renewal: |
171 |
Allow auto-renewal: |
171 |
</label> |
172 |
</label> |
Lines 231-236
Link Here
|
231 |
<div id="opac-user-checkouts"> |
232 |
<div id="opac-user-checkouts"> |
232 |
[% IF ( issues_count ) %] |
233 |
[% IF ( issues_count ) %] |
233 |
<form id="renewselected" action="/cgi-bin/koha/opac-renew.pl" method="post"> |
234 |
<form id="renewselected" action="/cgi-bin/koha/opac-renew.pl" method="post"> |
|
|
235 |
<legend class="sr-only">Renew selected</legend> |
234 |
<input type="hidden" name="borrowernumber" value="[% borrowernumber | html %]"> |
236 |
<input type="hidden" name="borrowernumber" value="[% borrowernumber | html %]"> |
235 |
<input type="hidden" name="from" value="opac_user" /> |
237 |
<input type="hidden" name="from" value="opac_user" /> |
236 |
<table id="checkoutst" class="table table-bordered table-striped"> |
238 |
<table id="checkoutst" class="table table-bordered table-striped"> |
Lines 456-461
Link Here
|
456 |
|
458 |
|
457 |
[% IF ( canrenew && !userdebarred && OpacRenewalAllowed && !( logged_in_user.is_expired && logged_in_user.category.effective_BlockExpiredPatronOpacActions ) ) %] |
459 |
[% IF ( canrenew && !userdebarred && OpacRenewalAllowed && !( logged_in_user.is_expired && logged_in_user.category.effective_BlockExpiredPatronOpacActions ) ) %] |
458 |
<form id="renewall" class="js-hide" action="/cgi-bin/koha/opac-renew.pl" method="post"> |
460 |
<form id="renewall" class="js-hide" action="/cgi-bin/koha/opac-renew.pl" method="post"> |
|
|
461 |
<legend class="sr-only">Renew</legend> |
459 |
<input type="hidden" name="from" value="opac_user" /> |
462 |
<input type="hidden" name="from" value="opac_user" /> |
460 |
<input type="hidden" name="borrowernumber" value="[% borrowernumber | html %]" /> |
463 |
<input type="hidden" name="borrowernumber" value="[% borrowernumber | html %]" /> |
461 |
[% FOREACH ISSUE IN ISSUES %] |
464 |
[% FOREACH ISSUE IN ISSUES %] |
Lines 468-473
Link Here
|
468 |
[% END %] |
471 |
[% END %] |
469 |
[% ELSE %] |
472 |
[% ELSE %] |
470 |
<table class="table table-bordered table-striped"> |
473 |
<table class="table table-bordered table-striped"> |
|
|
474 |
<caption class="sr-only">Checked out</caption> |
471 |
<tr><td>You have nothing checked out</td></tr> |
475 |
<tr><td>You have nothing checked out</td></tr> |
472 |
</table> |
476 |
</table> |
473 |
[% END # IF issues_count %] |
477 |
[% END # IF issues_count %] |
Lines 482-489
Link Here
|
482 |
[% IF ( OPACFinesTab ) %] |
486 |
[% IF ( OPACFinesTab ) %] |
483 |
<!-- FINES BOX --> |
487 |
<!-- FINES BOX --> |
484 |
[% IF ( amountoutstanding > 0 ) %] |
488 |
[% IF ( amountoutstanding > 0 ) %] |
485 |
<div id="opac-user-fines"> <h2>Charges</h2> |
489 |
<div id="opac-user-fines"> |
486 |
<table class="table table-bordered table-striped"> |
490 |
<table class="table table-bordered table-striped"> |
|
|
491 |
<caption>Charges</caption> |
487 |
<thead><tr><th colspan="2">Amount</th></tr></thead> |
492 |
<thead><tr><th colspan="2">Amount</th></tr></thead> |
488 |
<tbody> |
493 |
<tbody> |
489 |
<tr> |
494 |
<tr> |
Lines 496-503
Link Here
|
496 |
[% END %] |
501 |
[% END %] |
497 |
|
502 |
|
498 |
[% IF ( amountoutstanding < 0 ) %] |
503 |
[% IF ( amountoutstanding < 0 ) %] |
499 |
<div id="opac-user-fines"> <h2>Credits</h2> |
504 |
<div id="opac-user-fines"> |
500 |
<table class="table table-bordered table-striped"> |
505 |
<table class="table table-bordered table-striped"> |
|
|
506 |
<caption>Credits</caption> |
501 |
<thead><tr><th colspan="2">Amount</th></tr></thead> |
507 |
<thead><tr><th colspan="2">Amount</th></tr></thead> |
502 |
<tbody> |
508 |
<tbody> |
503 |
<tr> |
509 |
<tr> |
Lines 509-516
Link Here
|
509 |
[% END %] |
515 |
[% END %] |
510 |
|
516 |
|
511 |
[% IF relatives_with_fines %] |
517 |
[% IF relatives_with_fines %] |
512 |
<div id="opac-user-relative-fines"> <h2>Fines and charges</h2> |
518 |
<div id="opac-user-relative-fines"> |
513 |
<table class="table table-bordered table-striped"> |
519 |
<table class="table table-bordered table-striped"> |
|
|
520 |
<caption>Fines and charges</caption> |
514 |
<thead> |
521 |
<thead> |
515 |
<tr> |
522 |
<tr> |
516 |
<th colspan="2">Amount</th> |
523 |
<th colspan="2">Amount</th> |
Lines 532-537
Link Here
|
532 |
[% IF relatives %] |
539 |
[% IF relatives %] |
533 |
<div id="opac-user-relative-issues"> |
540 |
<div id="opac-user-relative-issues"> |
534 |
<table id="opac-user-relative-issues-table" class="table table-bordered table-striped"> |
541 |
<table id="opac-user-relative-issues-table" class="table table-bordered table-striped"> |
|
|
542 |
<caption class="sr-only">Relative issues</caption> |
535 |
<thead> |
543 |
<thead> |
536 |
<tr> |
544 |
<tr> |
537 |
<th class="anti-the">Title</th> |
545 |
<th class="anti-the">Title</th> |
Lines 792-797
Link Here
|
792 |
<td class="article-request-cancel"> |
800 |
<td class="article-request-cancel"> |
793 |
<span class="tdlabel">Cancel:</span> |
801 |
<span class="tdlabel">Cancel:</span> |
794 |
<form action="/cgi-bin/koha/opac-article-request-cancel.pl" id="delete_article_request_[% ar.id | html %]"> |
802 |
<form action="/cgi-bin/koha/opac-article-request-cancel.pl" id="delete_article_request_[% ar.id | html %]"> |
|
|
803 |
<legend class="sr-only">Cancel article request</legend> |
795 |
<input type="hidden" name="id" value="[% ar.id | html %]" /> |
804 |
<input type="hidden" name="id" value="[% ar.id | html %]" /> |
796 |
<button data-title="[% ar.biblio.title | html %] [% ar.item.enumchron | html %]" data-article-request_id="[% ar.id | html %]" type="submit" class="btn btn-sm btn-danger btn-delete-article-request"><i class="fa fa-remove" aria-hidden="true"></i> Cancel</button> |
805 |
<button data-title="[% ar.biblio.title | html %] [% ar.item.enumchron | html %]" data-article-request_id="[% ar.id | html %]" type="submit" class="btn btn-sm btn-danger btn-delete-article-request"><i class="fa fa-remove" aria-hidden="true"></i> Cancel</button> |
797 |
</form> |
806 |
</form> |
Lines 802-807
Link Here
|
802 |
</table> |
811 |
</table> |
803 |
[% ELSE %] |
812 |
[% ELSE %] |
804 |
<table class="table table-bordered table-striped"> |
813 |
<table class="table table-bordered table-striped"> |
|
|
814 |
<caption class="sr-only">Article requests</caption> |
805 |
<tr><td>You have no article requests currently.</td></tr> |
815 |
<tr><td>You have no article requests currently.</td></tr> |
806 |
</table> |
816 |
</table> |
807 |
[% END # IF article_requests_current.count %] |
817 |
[% END # IF article_requests_current.count %] |