Jonathan Druart
ab29b5efdc
Test plan: Read the changes and make sure they make sense Signed-off-by: Lee Jamison <ldjamison@marywood.edu> Signed-off-by: Mark Tompsett <mtompset@hotmail.com>
13 lines
765 B
HTML
13 lines
765 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 %]" class="btn btn-default btn-xs" >Make payment</a>
|
|
<a href="/cgi-bin/koha/members/paycollect.pl?borrowernumber=[% borrowernumber %]" class="btn btn-default btn-xs" >Pay all fines</a></li>
|
|
</li>
|
|
[% END %]
|