Lines 156-162
Using this account is not recommended because some parts of Koha will not functi
Link Here
|
156 |
<th>Barcode</th> |
156 |
<th>Barcode</th> |
157 |
[% END %] |
157 |
[% END %] |
158 |
<th>Call no.</th> |
158 |
<th>Call no.</th> |
159 |
[% IF ( OpacRenewalAllowed && !( borrower.is_expired && borrower.BlockExpiredPatronOpacActions ) ) %] |
159 |
[% IF ( OpacRenewalAllowed && !( borrower.is_expired && Koha.Preference('BlockExpiredPatronOpacActions') ) ) %] |
160 |
<th class="nosort">Renew</th> |
160 |
<th class="nosort">Renew</th> |
161 |
[% END %] |
161 |
[% END %] |
162 |
[% IF ( OPACFinesTab ) %] |
162 |
[% IF ( OPACFinesTab ) %] |
Lines 245-251
Using this account is not recommended because some parts of Koha will not functi
Link Here
|
245 |
<span class="tdlabel">Call no.:</span> |
245 |
<span class="tdlabel">Call no.:</span> |
246 |
[% ISSUE.itemcallnumber %] |
246 |
[% ISSUE.itemcallnumber %] |
247 |
</td> |
247 |
</td> |
248 |
[% IF ( OpacRenewalAllowed && !( borrower.is_expired && borrower.BlockExpiredPatronOpacActions ) ) %] |
248 |
[% IF ( OpacRenewalAllowed && !( borrower.is_expired && Koha.Preference('BlockExpiredPatronOpacActions') ) ) %] |
249 |
<td class="renew"> |
249 |
<td class="renew"> |
250 |
[% IF ISSUE.renewed %]<span class="blabel label-success">Renewed!</span><br />[% END %] |
250 |
[% IF ISSUE.renewed %]<span class="blabel label-success">Renewed!</span><br />[% END %] |
251 |
[% IF ( ISSUE.status ) %] |
251 |
[% IF ( ISSUE.status ) %] |
Lines 285-296
Using this account is not recommended because some parts of Koha will not functi
Link Here
|
285 |
[% END # /FOREACH ISSUES %] |
285 |
[% END # /FOREACH ISSUES %] |
286 |
</tbody> |
286 |
</tbody> |
287 |
</table> |
287 |
</table> |
288 |
[% IF ( canrenew && !userdebarred && OpacRenewalAllowed && !( borrower.is_expired && borrower.BlockExpiredPatronOpacActions ) ) %] |
288 |
[% IF ( canrenew && !userdebarred && OpacRenewalAllowed && !( borrower.is_expired && Koha.Preference('BlockExpiredPatronOpacActions') ) ) %] |
289 |
<input type="submit" class="btn" value="Renew selected" /> |
289 |
<input type="submit" class="btn" value="Renew selected" /> |
290 |
[% END %] |
290 |
[% END %] |
291 |
</form> |
291 |
</form> |
292 |
|
292 |
|
293 |
[% IF ( canrenew && !userdebarred && OpacRenewalAllowed && !( borrower.is_expired && borrower.BlockExpiredPatronOpacActions ) ) %] |
293 |
[% IF ( canrenew && !userdebarred && OpacRenewalAllowed && !( borrower.is_expired && Koha.Preference('BlockExpiredPatronOpacActions') ) ) %] |
294 |
<form id="renewall" action="/cgi-bin/koha/opac-renew.pl" method="post"> |
294 |
<form id="renewall" action="/cgi-bin/koha/opac-renew.pl" method="post"> |
295 |
<input type="hidden" name="from" value="opac_user" /> |
295 |
<input type="hidden" name="from" value="opac_user" /> |
296 |
<input type="hidden" name="borrowernumber" value="[% borrowernumber %]" /> |
296 |
<input type="hidden" name="borrowernumber" value="[% borrowernumber %]" /> |
Lines 876-882
Using this account is not recommended because some parts of Koha will not functi
Link Here
|
876 |
e.preventDefault(); |
876 |
e.preventDefault(); |
877 |
$("#renewall").submit(); |
877 |
$("#renewall").submit(); |
878 |
}); |
878 |
}); |
879 |
[% IF ( canrenew && !userdebarred && OpacRenewalAllowed && !( borrower.is_expired && borrower.BlockExpiredPatronOpacActions ) ) %] |
879 |
[% IF ( canrenew && !userdebarred && OpacRenewalAllowed && !( borrower.is_expired && Koha.Preference('BlockExpiredPatronOpacActions') ) ) %] |
880 |
$("#checkoutst caption").append("<div id=\"renewcontrols\"><a id=\"renewselected_link\" href=\"#\">"+_("Renew selected")+"</a> <a id=\"renewall_link\" href=\"#\">"+_("Renew all")+"</a></div>"); |
880 |
$("#checkoutst caption").append("<div id=\"renewcontrols\"><a id=\"renewselected_link\" href=\"#\">"+_("Renew selected")+"</a> <a id=\"renewall_link\" href=\"#\">"+_("Renew all")+"</a></div>"); |
881 |
[% END %] |
881 |
[% END %] |
882 |
[% END %] |
882 |
[% END %] |