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 50-56 Link Here
50
    [% IF op == 'view' %]
50
    [% IF op == 'view' %]
51
        Details of job #[% job.id | html %] &rsaquo;
51
        Details of job #[% job.id | html %] &rsaquo;
52
    [% END %]
52
    [% END %]
53
    Background jobs &rsaquo;
53
    Jobs &rsaquo;
54
    Administration &rsaquo; Koha
54
    Administration &rsaquo; Koha
55
</title>
55
</title>
56
56
Lines 73-86 Link Here
73
        </li>
73
        </li>
74
        [% IF op == 'view' %]
74
        [% IF op == 'view' %]
75
            <li>
75
            <li>
76
                <a href="/cgi-bin/koha/admin/background_jobs.pl">Background jobs</a>
76
                <a href="/cgi-bin/koha/admin/background_jobs.pl">Jobs</a>
77
            </li>
77
            </li>
78
            <li>
78
            <li>
79
                <a href="#" aria-current="page">Details of job #[% job.id | html %]</a>
79
                <a href="#" aria-current="page">Details of job #[% job.id | html %]</a>
80
            </li>
80
            </li>
81
        [% ELSE %]
81
        [% ELSE %]
82
            <li>
82
            <li>
83
                <a href="#" aria-current="page">Background jobs</a>
83
                <a href="#" aria-current="page">Jobs</a>
84
            </li>
84
            </li>
85
        [% END %]
85
        [% END %]
86
    [% ELSE %]
86
    [% ELSE %]
Lines 154-160 Link Here
154
154
155
[% IF op == 'list' %]
155
[% IF op == 'list' %]
156
156
157
    <h1>Background jobs</h1>
157
    <h1>Jobs</h1>
158
158
159
    <div>
159
    <div>
160
        <input type="checkbox" id="only_current" checked />
160
        <input type="checkbox" id="only_current" checked />
161
- 

Return to bug 30982