Jonathan Druart
5825026448
This patch has been generated with the script provided on bug 21576. It only affects variable used in the href attribute of a link *when* href it the first attribute of the node (grep "a href") Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
13 lines
777 B
HTML
13 lines
777 B
HTML
[% USE Price %]
|
|
[% SET NoIssuesCharge = Koha.Preference('noissuescharge') %]
|
|
[% IF fines and fines > 0 %]
|
|
<li>
|
|
<span class="circ-hlt">Fees & Charges:</span>
|
|
Patron has outstanding fees & charges of [% fines | $Price %].
|
|
[% IF !Koha.Preference('AllowFineOverride') && NoIssuesCharge && fines > NoIssuesCharge %]
|
|
<span class="circ-hlt">Checkouts are BLOCKED because fine balance is OVER THE LIMIT.</span>
|
|
[% END %]
|
|
<a href="/cgi-bin/koha/members/pay.pl?borrowernumber=[% borrowernumber | uri %]" class="btn btn-default btn-xs" >Make payment</a>
|
|
<a href="/cgi-bin/koha/members/paycollect.pl?borrowernumber=[% borrowernumber | uri %]" class="btn btn-default btn-xs" >Pay all fines</a></li>
|
|
</li>
|
|
[% END %]
|