Koha/koha-tmpl/intranet-tmpl/prog/en/includes/budgets-active-currency.inc
Marc Véron 0bfd512759 Bug 15049: (followup) Add warning about "No active currency"
Fix translatibiity issues and use include in admin/aqplan.tt as well.
See comment #24

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Signed-off-by: Brendan A Gallagher <brendan@bywatersolutions.com>
2015-12-30 23:34:34 +00:00

14 lines
498 B
HTML

[% IF ( currency ) %]
[% IF ( not hide ) %]
<p><b>Currency = [% currency %]</b></p>
[% END %]
[% ELSE %]
<div class="dialog alert">
<h3>No active currency is defined</h3>
[% IF CAN_user_parameters_parameters_remaining_permissions %]
<p><a href="/cgi-bin/koha/admin/currency.pl">Please specify an active currency.</a></p>
[% ELSE %]
<p>Your administrator must specify an active currency.</p>
[% END %]
</div>
[% END %]