Lines 8-14
Link Here
|
8 |
<title>[% FILTER collapse %] |
8 |
<title>[% FILTER collapse %] |
9 |
[% IF op =='add_form' %] |
9 |
[% IF op =='add_form' %] |
10 |
[% IF credit_type.code %] |
10 |
[% IF credit_type.code %] |
11 |
[% t("Modify credit type") | html %] › |
11 |
[% tx("Modify credit type {credit_type}", {credit_type = credit_type.code }) | html %] › |
12 |
[% ELSE %] |
12 |
[% ELSE %] |
13 |
[% t("New credit type") | html %] › |
13 |
[% t("New credit type") | html %] › |
14 |
[% END %] |
14 |
[% END %] |
Lines 39-45
Link Here
|
39 |
[% END %] |
39 |
[% END %] |
40 |
[% WRAPPER breadcrumb_item bc_active= 1 %] |
40 |
[% WRAPPER breadcrumb_item bc_active= 1 %] |
41 |
[% IF credit_type.code %] |
41 |
[% IF credit_type.code %] |
42 |
<span>Modify credit type</span> |
42 |
[% tx("Modify credit type {credit_type}", {credit_type = credit_type.code }) | html %] |
43 |
[% ELSE %] |
43 |
[% ELSE %] |
44 |
<span>New credit type</span> |
44 |
<span>New credit type</span> |
45 |
[% END %] |
45 |
[% END %] |
Lines 77-83
Link Here
|
77 |
|
77 |
|
78 |
[% IF op == 'add_form' %] |
78 |
[% IF op == 'add_form' %] |
79 |
[% IF credit_type %] |
79 |
[% IF credit_type %] |
80 |
<h1>Modify a credit type</h1> |
80 |
<h1>[% tx("Modify credit type {credit_type}", {credit_type = credit_type.code }) | html %]</h1> |
81 |
[% ELSE %] |
81 |
[% ELSE %] |
82 |
<h1>New credit type</h1> |
82 |
<h1>New credit type</h1> |
83 |
[% END %] |
83 |
[% END %] |
Lines 155-161
Link Here
|
155 |
<a class="btn btn-default" id="newcredittype" href="/cgi-bin/koha/admin/credit_types.pl?op=add_form"><i class="fa fa-plus"></i> New credit type</a> |
155 |
<a class="btn btn-default" id="newcredittype" href="/cgi-bin/koha/admin/credit_types.pl?op=add_form"><i class="fa fa-plus"></i> New credit type</a> |
156 |
</div> |
156 |
</div> |
157 |
|
157 |
|
158 |
<h1>Account credit types</h1> |
158 |
<h1>Credit types</h1> |
159 |
[% IF credit_types.count %] |
159 |
[% IF credit_types.count %] |
160 |
<div class="page-section"> |
160 |
<div class="page-section"> |
161 |
<table id="table_credit_types"> |
161 |
<table id="table_credit_types"> |
162 |
- |
|
|