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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/budgets-active-currency.inc (-1 / +14 lines)
Line 1 Link Here
1
[% IF ( currency ) %]<p><b>Currency = [% currency %]</b></p>[% ELSE %]<div class="dialog alert"><h3>No active currency is defined</h3><p>[% IF CAN_user_parameters_parameters_remaining_permissions %]Please <a href="/cgi-bin/koha/admin/currency.pl">specify an active currency</a>.[% ELSE %]Your administrator must specify an active currency.[% END %]</p></div>[% END %]
1
[% IF ( currency ) %]
2
    [% IF ( not hide ) %]
3
        <p><b>Currency = [% currency %]</b></p>
4
    [% END %]
5
[% ELSE %]
6
    <div class="dialog alert">
7
        <h3>No active currency is defined</h3>
8
        [% IF CAN_user_parameters_parameters_remaining_permissions %]
9
            <p>Please <a href="/cgi-bin/koha/admin/currency.pl">specify an active currency</a>.</p>
10
        [% ELSE %]
11
            <p>Your administrator must specify an active currency.</p>
12
        [% END %]
13
    </div>
14
[% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/acqui-home.tt (-2 / +1 lines)
Lines 98-104 $(document).ready(function() { Link Here
98
[% INCLUDE 'acquisitions-toolbar.inc' %]
98
[% INCLUDE 'acquisitions-toolbar.inc' %]
99
99
100
<h1>Acquisitions</h1>
100
<h1>Acquisitions</h1>
101
    [% INCLUDE 'budgets-active-currency.inc' %]
101
    [% INCLUDE 'budgets-active-currency.inc' hide = 'yes' %]
102
    [% UNLESS ( loop_budget ) %]
102
    [% UNLESS ( loop_budget ) %]
103
        [% IF ( CAN_user_acquisition_period_manage ) %]
103
        [% IF ( CAN_user_acquisition_period_manage ) %]
104
        <div class="dialog alert">You must <a href="/cgi-bin/koha/admin/aqbudgetperiods.pl">define a budget</a> in Administration</div>
104
        <div class="dialog alert">You must <a href="/cgi-bin/koha/admin/aqbudgetperiods.pl">define a budget</a> in Administration</div>
105
- 

Return to bug 15049