|
Lines 423-438
Link Here
|
| 423 |
[% IF ( ISSUE.status ) %] |
423 |
[% IF ( ISSUE.status ) %] |
| 424 |
[% IF ( canrenew ) %] |
424 |
[% IF ( canrenew ) %] |
| 425 |
<input type="checkbox" name="issue" value="[% ISSUE.issue_id | uri %]" /> |
425 |
<input type="checkbox" name="issue" value="[% ISSUE.issue_id | uri %]" /> |
| 426 |
<a |
426 |
<a class="submit-form-link" href="#" data-method="post" data-action="/cgi-bin/koha/opac-renew.pl" data-issue="[% ISSUE.issue_id | html %]" data-op="cud-renew">Renew</a> |
| 427 |
class="submit-form-link" |
|
|
| 428 |
href="#" |
| 429 |
data-method="post" |
| 430 |
data-action="/cgi-bin/koha/opac-renew.pl?from=opac_user" |
| 431 |
data-issue="[% ISSUE.issue_id | html %]" |
| 432 |
data-borrowernumber="[% ISSUE.borrowernumber | html %]" |
| 433 |
data-op="cud-renew" |
| 434 |
>Renew</a |
| 435 |
> |
| 436 |
[% END %] |
427 |
[% END %] |
| 437 |
[% IF ISSUE.renewalfee > 0 %] |
428 |
[% IF ISSUE.renewalfee > 0 %] |
| 438 |
<span class="renewalfee badge text-bg-warning">Fee for item type '[% ItemTypes.GetDescription( ISSUE.renewalitemtype) | html %]': [% ISSUE.renewalfee | $Price %]</span> |
429 |
<span class="renewalfee badge text-bg-warning">Fee for item type '[% ItemTypes.GetDescription( ISSUE.renewalitemtype) | html %]': [% ISSUE.renewalfee | $Price %]</span> |
| 439 |
- |
|
|