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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/accountline-details.tt (-15 / +9 lines)
Lines 63-87 Link Here
63
        <div class="col-sm-10 col-sm-push-2">
63
        <div class="col-sm-10 col-sm-push-2">
64
            <main>
64
            <main>
65
65
66
            <h1>
67
                [% IF type == 'credit' %]
68
                    <span>Details of payment</span>
69
                [% ELSIF type == 'debit' %]
70
                    <span>Details of fee</span>
71
                [% END %]
72
            </h1>
73
74
            [% INCLUDE 'members-toolbar.inc' borrowernumber=patron.borrowernumber %]
66
            [% INCLUDE 'members-toolbar.inc' borrowernumber=patron.borrowernumber %]
75
67
68
            <h1>Transaction details</h1>
69
76
            [% IF accountline %]
70
            [% IF accountline %]
77
                [% af_values = accountline.additional_field_values %]
78
                [% IF accountline.credit_type_code %]
79
                    <h2>Details of credit</h2>
80
                [% ELSIF accountline.debit_type_code %]
81
                    <h2>Details of debit</h2>
82
                [% END %]
83
71
84
                <div class="page-section">
72
                <div class="page-section">
73
                    [% af_values = accountline.additional_field_values %]
74
                    [% IF accountline.credit_type_code %]
75
                        <h2>Details of credit</h2>
76
                    [% ELSIF accountline.debit_type_code %]
77
                        <h2>Details of debit</h2>
78
                    [% END %]
79
85
                    <table id="table_account_fines">
80
                    <table id="table_account_fines">
86
                        <thead>
81
                        <thead>
87
                            <tr>
82
                            <tr>
88
- 

Return to bug 32634