|
Lines 1-5
Link Here
|
| 1 |
[% USE KohaDates %] |
1 |
[% USE KohaDates %] |
| 2 |
[% USE ColumnsSettings %] |
2 |
[% USE ColumnsSettings %] |
|
|
3 |
[% USE HtmlTags %] |
| 3 |
[% INCLUDE 'doc-head-open.inc' %] |
4 |
[% INCLUDE 'doc-head-open.inc' %] |
| 4 |
<title>Koha › Administration › Currencies & Exchange rates › |
5 |
<title>Koha › Administration › Currencies & Exchange rates › |
| 5 |
[% IF op == 'add_form' %][% IF currency %]Modify currency '[% currency.currency %]'[% ELSE %]New currency[% END %][% END %] |
6 |
[% IF op == 'add_form' %][% IF currency %]Modify currency '[% currency.currency %]'[% ELSE %]New currency[% END %][% END %] |
|
Lines 52-58
Link Here
|
| 52 |
|
53 |
|
| 53 |
|
54 |
|
| 54 |
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> › <a href="/cgi-bin/koha/admin/currency.pl">Currencies & Exchange rates</a> › [% IF op == 'add_form' %][% IF currency %]Modify currency '[% currency.currency %]'[% ELSE %]New currency[% END %][% END %] |
55 |
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> › <a href="/cgi-bin/koha/admin/currency.pl">Currencies & Exchange rates</a> › [% IF op == 'add_form' %][% IF currency %]Modify currency '[% currency.currency %]'[% ELSE %]New currency[% END %][% END %] |
| 55 |
[% IF op == 'delete_confirm' %]Confirm deletion of currency '[% '<span class="ex">' _ currency.currency _ '</span>' %]' |
56 |
[% IF op == 'delete_confirm' %]Confirm deletion of currency [% currency.currency | $HtmlTags tag='span' attributes=>'class="ex"' %] |
| 56 |
[% ELSIF op == 'list' %]Currencies |
57 |
[% ELSIF op == 'list' %]Currencies |
| 57 |
[% END %] |
58 |
[% END %] |
| 58 |
</div> |
59 |
</div> |
|
Lines 152-158
Link Here
|
| 152 |
[% IF op =='delete_confirm' %] |
153 |
[% IF op =='delete_confirm' %] |
| 153 |
[% IF nb_of_orders or nb_of_vendors %] |
154 |
[% IF nb_of_orders or nb_of_vendors %] |
| 154 |
<div class="dialog alert"> |
155 |
<div class="dialog alert"> |
| 155 |
<h3>Cannot delete currency '[% '<span class="ex">' _ currency.currency _ '</span>' %]'</h3> |
156 |
<h3>Cannot delete currency [% currency.currency | $HtmlTags tag='span' attributes=>'class="ex"' %] |
|
|
157 |
</h3> |
| 156 |
<p> |
158 |
<p> |
| 157 |
[% IF nb_of_orders %] |
159 |
[% IF nb_of_orders %] |
| 158 |
This currency is used by [% nb_of_orders %] orders. |
160 |
This currency is used by [% nb_of_orders %] orders. |
|
Lines 167-173
Link Here
|
| 167 |
</div> |
169 |
</div> |
| 168 |
[% ELSE %] |
170 |
[% ELSE %] |
| 169 |
<div class="dialog alert"> |
171 |
<div class="dialog alert"> |
| 170 |
<h3>Confirm deletion of currency '[% '<span class="ex">' _ currency.currency _ '</span>' %]'</h3> |
172 |
<h3>Confirm deletion of currency [% currency.currency | $HtmlTags tag='span' attributes=>'class="ex"' %] |
|
|
173 |
</h3> |
| 171 |
<table> |
174 |
<table> |
| 172 |
<tr><th>Currency</th> |
175 |
<tr><th>Currency</th> |
| 173 |
<td>[% currency.currency %]</td> |
176 |
<td>[% currency.currency %]</td> |
| 174 |
- |
|
|