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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/admin-menu.inc (-2 / +2 lines)
Lines 81-89 Link Here
81
    [% END %]
81
    [% END %]
82
82
83
    [% IF CAN_user_parameters_manage_background_jobs %]
83
    [% IF CAN_user_parameters_manage_background_jobs %]
84
        <h5>Background jobs</h5>
84
        <h5>Jobs</h5>
85
        <ul>
85
        <ul>
86
            <li><a href="/cgi-bin/koha/admin/background_jobs.pl">Background jobs</a></li>
86
            <li><a href="/cgi-bin/koha/admin/background_jobs.pl">Jobs</a></li>
87
        </ul>
87
        </ul>
88
    [% END %]
88
    [% END %]
89
89
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/admin-home.tt (-3 / +3 lines)
Lines 155-164 Link Here
155
            [% END %]
155
            [% END %]
156
156
157
            [% IF CAN_user_parameters_manage_background_jobs %]
157
            [% IF CAN_user_parameters_manage_background_jobs %]
158
                <h3>Background jobs</h3>
158
                <h3>Jobs</h3>
159
                <dl>
159
                <dl>
160
                    <dt><a href="/cgi-bin/koha/admin/background_jobs.pl">Manage background jobs</a></dt>
160
                    <dt><a href="/cgi-bin/koha/admin/background_jobs.pl">Manage jobs</a></dt>
161
                    <dd>View, manage and cancel background jobs.</dd>
161
                    <dd>View, manage and cancel jobs.</dd>
162
                </dl>
162
                </dl>
163
            [% END %]
163
            [% END %]
164
164
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/background_jobs.tt (-5 / +4 lines)
Lines 56-62 Link Here
56
    [% IF op == 'view' %]
56
    [% IF op == 'view' %]
57
        Details of job #[% job.id | html %] &rsaquo;
57
        Details of job #[% job.id | html %] &rsaquo;
58
    [% END %]
58
    [% END %]
59
    Background jobs &rsaquo;
59
    Jobs &rsaquo;
60
    Administration &rsaquo; Koha
60
    Administration &rsaquo; Koha
61
</title>
61
</title>
62
62
Lines 79-92 Link Here
79
        </li>
79
        </li>
80
        [% IF op == 'view' %]
80
        [% IF op == 'view' %]
81
            <li>
81
            <li>
82
                <a href="/cgi-bin/koha/admin/background_jobs.pl">Background jobs</a>
82
                <a href="/cgi-bin/koha/admin/background_jobs.pl">Jobs</a>
83
            </li>
83
            </li>
84
            <li>
84
            <li>
85
                <a href="#" aria-current="page">Details of job #[% job.id | html %]</a>
85
                <a href="#" aria-current="page">Details of job #[% job.id | html %]</a>
86
            </li>
86
            </li>
87
        [% ELSE %]
87
        [% ELSE %]
88
            <li>
88
            <li>
89
                <a href="#" aria-current="page">Background jobs</a>
89
                <a href="#" aria-current="page">Jobs</a>
90
            </li>
90
            </li>
91
        [% END %]
91
        [% END %]
92
    [% ELSE %]
92
    [% ELSE %]
Lines 160-166 Link Here
160
160
161
[% IF op == 'list' %]
161
[% IF op == 'list' %]
162
162
163
    <h1>Background jobs</h1>
163
    <h1>Jobs</h1>
164
164
165
    <div>
165
    <div>
166
        <input type="checkbox" id="only_current" checked />
166
        <input type="checkbox" id="only_current" checked />
167
- 

Return to bug 30982