View | Details | Raw Unified | Return to bug 17078
Collapse All | Expand All

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt (-4 / +4 lines)
Lines 1-5 Link Here
1
[% USE Koha %]
1
[% USE Koha %]
2
[% USE KohaDates %]
2
[% USE KohaDates %]
3
[% USE Price %]
3
[% SET ENABLE_OPAC_PAYMENTS = Koha.Preference('EnablePayPalOpacPayments') %]
4
[% SET ENABLE_OPAC_PAYMENTS = Koha.Preference('EnablePayPalOpacPayments') %]
4
[% SET DISPLAY_PAYMENT_BLOCK = 0 %]
5
[% SET DISPLAY_PAYMENT_BLOCK = 0 %]
5
6
Lines 84-90 Link Here
84
                                    [%- SET COLSPAN = 3 -%]
85
                                    [%- SET COLSPAN = 3 -%]
85
                                [%- END -%]
86
                                [%- END -%]
86
                                <th class="sum" colspan="[% COLSPAN %]">Total due</th>
87
                                <th class="sum" colspan="[% COLSPAN %]">Total due</th>
87
                                <td class="sum">[% total %]</td>
88
                                <td class="sum">[% total | $Price %]</td>
88
                            </tr>
89
                            </tr>
89
                            </tfoot>
90
                            </tfoot>
90
91
Lines 127-134 Link Here
127
                                          [%- IF ACCOUNT_LINE.description %], [% ACCOUNT_LINE.description %][% END %]
128
                                          [%- IF ACCOUNT_LINE.description %], [% ACCOUNT_LINE.description %][% END %]
128
                                          [% IF ACCOUNT_LINE.title %]([% ACCOUNT_LINE.title %])[% END %]
129
                                          [% IF ACCOUNT_LINE.title %]([% ACCOUNT_LINE.title %])[% END %]
129
                                        </td>
130
                                        </td>
130
                                        [% IF ( ACCOUNT_LINE.amountcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% ACCOUNT_LINE.amount %]</td>
131
                                        [% IF ( ACCOUNT_LINE.amountcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% ACCOUNT_LINE.amount | $Price %]</td>
131
                                        [% IF ( ACCOUNT_LINE.amountoutstandingcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% ACCOUNT_LINE.amountoutstanding %]</td>
132
                                        [% IF ( ACCOUNT_LINE.amountoutstandingcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% ACCOUNT_LINE.amountoutstanding | $Price %]</td>
132
                                    </tr>
133
                                    </tr>
133
                                [% END %]
134
                                [% END %]
134
                            </tbody>
135
                            </tbody>
135
- 

Return to bug 17078