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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc (-1 / +1 lines)
Lines 55-61 Link Here
55
                    [% IF ( CAN_user_suggestions_suggestions_manage ) %]
55
                    [% IF ( CAN_user_suggestions_suggestions_manage ) %]
56
                        <li><a href="/cgi-bin/koha/suggestion/suggestion.pl">Suggestions</a></li>
56
                        <li><a href="/cgi-bin/koha/suggestion/suggestion.pl">Suggestions</a></li>
57
                    [% END %]
57
                    [% END %]
58
                    [% IF ( CAN_user_tools ) %]
58
                    [% IF ( CAN_user_tools || CAN_user_clubs ) %]
59
                        <li><a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a></li>
59
                        <li><a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a></li>
60
                    [% END %]
60
                    [% END %]
61
                    [% IF ( Koha.Preference('EnablePointOfSale') && Koha.Preference('UseCashRegisters') && CAN_user_cash_management_takepayment ) %]
61
                    [% IF ( Koha.Preference('EnablePointOfSale') && Koha.Preference('UseCashRegisters') && CAN_user_cash_management_takepayment ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt (-1 / +1 lines)
Lines 156-162 Link Here
156
                            [% END %]
156
                            [% END %]
157
157
158
158
159
                            [% IF ( CAN_user_tools ) %]
159
                            [% IF ( CAN_user_tools || CAN_user_clubs ) %]
160
                            <li>
160
                            <li>
161
                                <a class="icon_general icon_tools" href="/cgi-bin/koha/tools/tools-home.pl"><i class="fa fa-fw fa-wrench"></i>Tools</a>
161
                                <a class="icon_general icon_tools" href="/cgi-bin/koha/tools/tools-home.pl"><i class="fa fa-fw fa-wrench"></i>Tools</a>
162
                            </li>
162
                            </li>
(-)a/tools/tools-home.pl (-2 / +1 lines)
Lines 29-35 my ( $template, $loggedinuser, $cookie ) = get_template_and_user( Link Here
29
        template_name   => "tools/tools-home.tt",
29
        template_name   => "tools/tools-home.tt",
30
        query           => $query,
30
        query           => $query,
31
        type            => "intranet",
31
        type            => "intranet",
32
        flagsrequired   => { tools => '*' },
32
        flagsrequired   => [ tools => '*', clubs => '*' ],
33
    }
33
    }
34
);
34
);
35
35
36
- 

Return to bug 26628