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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt (-1 / +23 lines)
Lines 65-70 Link Here
65
</div>
65
</div>
66
[% END %]
66
[% END %]
67
67
68
[% FOR m IN messages %]
69
    <div class="dialog [% m.type %]">
70
        [% SWITCH m.code %]
71
        [% CASE 'error_on_update' %]
72
            An error occurred when updating this currency. Perhaps it already exists.
73
        [% CASE 'error_on_insert' %]
74
            An error occurred when adding this currency. The currency code might already exist.
75
        [% CASE 'error_on_delete' %]
76
            An error occurred when deleting this currency. Check the logs.
77
        [% CASE 'success_on_update' %]
78
            Currency updated successfully.
79
        [% CASE 'success_on_insert' %]
80
            Currency added successfully.
81
        [% CASE 'success_on_delete' %]
82
            Currency deleted successfully.
83
        [% CASE %]
84
            [% m.code %]
85
        [% END %]
86
    </div>
87
[% END %]
88
89
90
68
[% IF op == 'add_form' %]
91
[% IF op == 'add_form' %]
69
92
70
<form action="/cgi-bin/koha/admin/currency.pl" name="Aform" method="post" class="validated">
93
<form action="/cgi-bin/koha/admin/currency.pl" name="Aform" method="post" class="validated">
71
- 

Return to bug 15962