Lines 1-6
Link Here
|
1 |
[% USE Koha %] |
1 |
[% USE Koha %] |
2 |
[% USE KohaDates %] |
2 |
[% USE KohaDates %] |
3 |
[% SET ENABLE_OPAC_PAYMENTS = Koha.Preference('EnablePayPalOpacPayments') %] |
3 |
[% SET ENABLE_OPAC_PAYMENTS = Koha.Preference('EnablePayPalOpacPayments') %] |
|
|
4 |
[% SET DISPLAY_PAYMENT_BLOCK = 0 %] |
4 |
|
5 |
|
5 |
[% INCLUDE 'doc-head-open.inc' %] |
6 |
[% INCLUDE 'doc-head-open.inc' %] |
6 |
<title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog › Your fines and charges</title> |
7 |
<title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog › Your fines and charges</title> |
Lines 93-98
Link Here
|
93 |
[% IF ENABLE_OPAC_PAYMENTS %] |
94 |
[% IF ENABLE_OPAC_PAYMENTS %] |
94 |
<td> |
95 |
<td> |
95 |
[% IF ACCOUNT_LINE.amountoutstanding > 0 %] |
96 |
[% IF ACCOUNT_LINE.amountoutstanding > 0 %] |
|
|
97 |
[% SET DISPLAY_PAYMENT_BLOCK = 1 %] |
96 |
<input class="checkbox-pay pay-online hidden" name="accountline" type="checkbox" id="checkbox-pay-[% ACCOUNT_LINE.accountlines_id %]" value="[% ACCOUNT_LINE.accountlines_id %]"> |
98 |
<input class="checkbox-pay pay-online hidden" name="accountline" type="checkbox" id="checkbox-pay-[% ACCOUNT_LINE.accountlines_id %]" value="[% ACCOUNT_LINE.accountlines_id %]"> |
97 |
<input type="hidden" id="amount-[% ACCOUNT_LINE.accountlines_id %]" value="[% ACCOUNT_LINE.amountoutstanding %]" /> |
99 |
<input type="hidden" id="amount-[% ACCOUNT_LINE.accountlines_id %]" value="[% ACCOUNT_LINE.amountoutstanding %]" /> |
98 |
[% END %] |
100 |
[% END %] |
Lines 132-138
Link Here
|
132 |
|
134 |
|
133 |
</table> |
135 |
</table> |
134 |
|
136 |
|
135 |
[% IF ENABLE_OPAC_PAYMENTS %] |
137 |
[% IF ENABLE_OPAC_PAYMENTS && DISPLAY_PAYMENT_BLOCK %] |
136 |
<fieldset class="pay-online hidden"> |
138 |
<fieldset class="pay-online hidden"> |
137 |
<legend>Pay selected fines and charges</legend> |
139 |
<legend>Pay selected fines and charges</legend> |
138 |
<span class="help-block"><h3>Payment method</h3></span> |
140 |
<span class="help-block"><h3>Payment method</h3></span> |
139 |
- |
|
|