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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/debit_types.tt (-5 / +4 lines)
Lines 9-15 Link Here
9
<title>[% FILTER collapse %]
9
<title>[% FILTER collapse %]
10
    [% IF op =='add_form' %]
10
    [% IF op =='add_form' %]
11
       [% IF debit_type.code %]
11
       [% IF debit_type.code %]
12
           [% t("Modify debit type") | html %]
12
           [% tx("Modify debit type '{debit_type}'", { debit_type = debit_type.code }) | html %]
13
       [% ELSE %]
13
       [% ELSE %]
14
           [% t("New debit type") | html %]
14
           [% t("New debit type") | html %]
15
       [% END %] &rsaquo;
15
       [% END %] &rsaquo;
Lines 38-44 Link Here
38
            [% END %]
38
            [% END %]
39
            [% WRAPPER breadcrumb_item bc_active= 1 %]
39
            [% WRAPPER breadcrumb_item bc_active= 1 %]
40
                [% IF debit_type.code %]
40
                [% IF debit_type.code %]
41
                    <span>Modify debit type</span>
41
                    [% tx("Modify debit type '{debit_type}'", { debit_type = debit_type.code }) | html %]
42
                [% ELSE %]
42
                [% ELSE %]
43
                    <span>New debit type</span>
43
                    <span>New debit type</span>
44
                [% END %]
44
                [% END %]
Lines 76-82 Link Here
76
76
77
                [% IF op == 'add_form' %]
77
                [% IF op == 'add_form' %]
78
                    [% IF debit_type %]
78
                    [% IF debit_type %]
79
                        <h1>Modify a debit type</h1>
79
                        <h1>[% tx("Modify debit type '{debit_type}'", { debit_type = debit_type.code }) | html %]</h1>
80
                    [% ELSE %]
80
                    [% ELSE %]
81
                        <h1>New debit type</h1>
81
                        <h1>New debit type</h1>
82
                    [% END %]
82
                    [% END %]
Lines 159-165 Link Here
159
                        <a class="btn btn-default" id="newdebittype" href="/cgi-bin/koha/admin/debit_types.pl?op=add_form"><i class="fa fa-plus"></i> New debit type</a>
159
                        <a class="btn btn-default" id="newdebittype" href="/cgi-bin/koha/admin/debit_types.pl?op=add_form"><i class="fa fa-plus"></i> New debit type</a>
160
                    </div>
160
                    </div>
161
161
162
                    <h1>Account debit types</h1>
162
                    <h1>Debit types</h1>
163
                    [% IF debit_types.count %]
163
                    [% IF debit_types.count %]
164
                        <div class="page-section">
164
                        <div class="page-section">
165
                            <table id="table_debit_types">
165
                            <table id="table_debit_types">
166
- 

Return to bug 34389