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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt (-4 / +3 lines)
Lines 3-9 Link Here
3
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
4
<title>Koha &rsaquo; Administration &rsaquo; Currencies &amp; Exchange rates &rsaquo;
4
<title>Koha &rsaquo; Administration &rsaquo; Currencies &amp; Exchange rates &rsaquo;
5
[% IF op == 'add_form' %][% IF currency %]Modify currency '[% currency.currency %]'[% ELSE %]New currency[% END %][% END %]
5
[% IF op == 'add_form' %][% IF currency %]Modify currency '[% currency.currency %]'[% ELSE %]New currency[% END %][% END %]
6
[% IF op == 'delete_' %]Confirm deletion of currency '[% searchfield %]'[% END %]
6
[% IF op == 'delete_confirm' %]Confirm deletion of currency '[% currency.currency %]'[% END %]
7
[% IF op == 'list' %]Currencies[% END %]</title>
7
[% IF op == 'list' %]Currencies[% END %]</title>
8
[% INCLUDE 'doc-head-close.inc' %]
8
[% INCLUDE 'doc-head-close.inc' %]
9
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables.css" />
9
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables.css" />
Lines 49-55 Link Here
49
49
50
50
51
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> &rsaquo;  <a href="/cgi-bin/koha/admin/currency.pl">Currencies &amp; Exchange rates</a> &rsaquo; [% IF op == 'add_form' %][% IF currency %]Modify currency '[% currency.currency %]'[% ELSE %]New currency[% END %][% END %]
51
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> &rsaquo;  <a href="/cgi-bin/koha/admin/currency.pl">Currencies &amp; Exchange rates</a> &rsaquo; [% IF op == 'add_form' %][% IF currency %]Modify currency '[% currency.currency %]'[% ELSE %]New currency[% END %][% END %]
52
[% IF op == 'delete_confirm' %]Confirm deletion of currency '[% '<span class="ex">' _ searchfield _ '</span>' %]'
52
[% IF op == 'delete_confirm' %]Confirm deletion of currency '[% '<span class="ex">' _ currency.currency _ '</span>' %]'
53
[% ELSIF op == 'list' %]Currencies
53
[% ELSIF op == 'list' %]Currencies
54
[% END %]
54
[% END %]
55
</div>
55
</div>
Lines 149-155 Link Here
149
[% IF op =='delete_confirm' %]
149
[% IF op =='delete_confirm' %]
150
    [% IF nb_of_orders or nb_of_vendors %]
150
    [% IF nb_of_orders or nb_of_vendors %]
151
    <div class="dialog alert">
151
    <div class="dialog alert">
152
        <h3>Cannot delete currency [% '<span class="ex">' _ currency.currency _ '</span>' %]'</h3>
152
        <h3>Cannot delete currency '[% '<span class="ex">' _ currency.currency _ '</span>' %]'</h3>
153
        <p>
153
        <p>
154
            [% IF nb_of_orders %]
154
            [% IF nb_of_orders %]
155
                This currency is used by [% nb_of_orders %] orders.
155
                This currency is used by [% nb_of_orders %] orders.
156
- 

Return to bug 16701