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

(-)a/C4/Suggestions.pm (-1 / +1 lines)
Lines 56-62 use C4::Suggestions; Link Here
56
56
57
=head1 DESCRIPTION
57
=head1 DESCRIPTION
58
58
59
The functions in this module deal with the aqorders in OPAC and in librarian interface
59
The functions in this module deal with the aqorders in OPAC and in staff interface
60
60
61
A suggestion is done in the OPAC. It has the status "ASKED"
61
A suggestion is done in the OPAC. It has the status "ASKED"
62
62
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt (-9 / +8 lines)
Lines 371-377 Link Here
371
                            <td>
371
                            <td>
372
                                [% IF c.category == 'news' || c.category == 'pages' %]
372
                                [% IF c.category == 'news' || c.category == 'pages' %]
373
                                    [% IF c.location == 'staff_and_opac' %]<span>All</span>
373
                                    [% IF c.location == 'staff_and_opac' %]<span>All</span>
374
                                    [% ELSIF c.location == 'staff_only' %]<span>Librarian interface</span>
374
                                    [% ELSIF c.location == 'staff_only' %]<span>Staff interface</span>
375
                                    [% ELSIF c.location == 'opac_only' %]<span>OPAC</span>
375
                                    [% ELSIF c.location == 'opac_only' %]<span>OPAC</span>
376
                                    [% ELSIF c.location == 'slip' %]<span>Slip</span>
376
                                    [% ELSIF c.location == 'slip' %]<span>Slip</span>
377
                                    [% ELSE %]<span>Unknown ('[% location | html %]')</span>
377
                                    [% ELSE %]<span>Unknown ('[% location | html %]')</span>
Lines 401-410 Link Here
401
                                    [% END %]
401
                                    [% END %]
402
                                    [% IF c.location == 'staff_only' OR c.location == 'staff_and_opac' %]
402
                                    [% IF c.location == 'staff_only' OR c.location == 'staff_and_opac' %]
403
                                        [% IF c.location == 'staff_and_opac' %]<br/>[% END %]
403
                                        [% IF c.location == 'staff_and_opac' %]<br/>[% END %]
404
                                        <strong>Librarian interface</strong>:
404
                                        <strong>Staff interface</strong>:
405
                                        <a href="/cgi-bin/koha/tools/page.pl?page_id=[% c.idnew | url %]" title="View on librarian interface">Default</a>
405
                                        <a href="/cgi-bin/koha/tools/page.pl?page_id=[% c.idnew | url %]" title="View on staff interface">Default</a>
406
                                        OR
406
                                        OR
407
                                        <a href="/cgi-bin/koha/tools/page.pl?code=[% c.code | url %]" title="View on librarian interface">Current language</a>
407
                                        <a href="/cgi-bin/koha/tools/page.pl?code=[% c.code | url %]" title="View on staff interface">Current language</a>
408
                                    [% END %]
408
                                    [% END %]
409
                                </td>
409
                                </td>
410
                            [% END %]
410
                            [% END %]
Lines 468-482 Link Here
468
[% BLOCK locations_options %]
468
[% BLOCK locations_options %]
469
    [% IF category == 'news' || category == 'pages' %]
469
    [% IF category == 'news' || category == 'pages' %]
470
        [% IF location == "staff_and_opac" %]
470
        [% IF location == "staff_and_opac" %]
471
            <option value="staff_and_opac" selected="selected">Librarian and OPAC interfaces</option>
471
            <option value="staff_and_opac" selected="selected">Staff interface and OPAC</option>
472
        [% ELSE %]
472
        [% ELSE %]
473
            <option value="staff_and_opac">Librarian and OPAC interfaces</option>
473
            <option value="staff_and_opac">Staff interface and OPAC</option>
474
        [% END %]
474
        [% END %]
475
475
476
        [% IF location == "staff_only" %]
476
        [% IF location == "staff_only" %]
477
            <option value="staff_only" selected="selected">Librarian interface</option>
477
            <option value="staff_only" selected="selected">Staff interface</option>
478
        [% ELSE %]
478
        [% ELSE %]
479
            <option value="staff_only">Librarian interface</option>
479
            <option value="staff_only">Staff interface</option>
480
        [% END %]
480
        [% END %]
481
481
482
        [% IF location == "opac_only" %]
482
        [% IF location == "opac_only" %]
483
- 

Return to bug 32027