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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-nav.inc (+5 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% USE Branches %]
2
[% USE Branches %]
2
<div id="navmenu">
3
<div id="navmenu">
3
    <div id="navmenulist">
4
    <div id="navmenulist">
Lines 15-21 Link Here
15
                <li><a href="/cgi-bin/koha/circ/branchtransfers.pl">Transfer</a></li>
16
                <li><a href="/cgi-bin/koha/circ/branchtransfers.pl">Transfer</a></li>
16
            [% END %]
17
            [% END %]
17
            [% IF ( AutoLocation ) %][% ELSE %][% IF ( IndependentBranches ) %][% ELSE %]
18
            [% IF ( AutoLocation ) %][% ELSE %][% IF ( IndependentBranches ) %][% ELSE %]
19
                [% IF Koha.Preference('UseCirculationDesks') %]
20
                <li><a href="/cgi-bin/koha/circ/set-library.pl">Set library and desk</a></li>
21
                [% ELSE %]
18
                <li><a href="/cgi-bin/koha/circ/set-library.pl">Set library</a></li>
22
                <li><a href="/cgi-bin/koha/circ/set-library.pl">Set library</a></li>
23
                [% END %]
19
            [% END %][% END %]
24
            [% END %][% END %]
20
            [% IF ( fast_cataloging ) %][% IF ( CAN_user_editcatalogue_fast_cataloging ) %]
25
            [% IF ( fast_cataloging ) %][% IF ( CAN_user_editcatalogue_fast_cataloging ) %]
21
                <li><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?frameworkcode=FA">Fast cataloging</a></li>
26
                <li><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?frameworkcode=FA">Fast cataloging</a></li>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc (+8 lines)
Lines 134-145 Link Here
134
                    [% IF ( IndependentBranches ) %]
134
                    [% IF ( IndependentBranches ) %]
135
                        [% IF ( CAN_user_editcatalogue_edit_catalogue ) %]
135
                        [% IF ( CAN_user_editcatalogue_edit_catalogue ) %]
136
                    <li>
136
                    <li>
137
                        [% IF Koha.Preference('UseCirculationDesks') %]
138
                        <a class="toplinks" href="/cgi-bin/koha/circ/set-library.pl">Set library and desk</a>
139
                        [% ELSE %]
137
                        <a class="toplinks" href="/cgi-bin/koha/circ/set-library.pl">Set library</a>
140
                        <a class="toplinks" href="/cgi-bin/koha/circ/set-library.pl">Set library</a>
141
                        [% END %]
138
                    </li>
142
                    </li>
139
                        [% END %]
143
                        [% END %]
140
                    [% ELSE %]
144
                    [% ELSE %]
141
                    <li>
145
                    <li>
146
                        [% IF Koha.Preference('UseCirculationDesks') %]
147
                        <a class="toplinks" href="/cgi-bin/koha/circ/set-library.pl">Set library and desk</a>
148
                        [% ELSE %]
142
                        <a class="toplinks" href="/cgi-bin/koha/circ/set-library.pl">Set library</a>
149
                        <a class="toplinks" href="/cgi-bin/koha/circ/set-library.pl">Set library</a>
150
                        [% END %]
143
                    </li>
151
                    </li>
144
                    [% END %]
152
                    [% END %]
145
                    [% IF EnableSearchHistory %]
153
                    [% IF EnableSearchHistory %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation-home.tt (+4 lines)
Lines 30-36 Link Here
30
                    </li>
30
                    </li>
31
                    [% UNLESS IndependentBranches %]
31
                    [% UNLESS IndependentBranches %]
32
                        <li>
32
                        <li>
33
                            [% IF Koha.Preference('UseCirculationDesks') %]
34
                            <a class="circ-button" href="/cgi-bin/koha/circ/set-library.pl"><i class="fa fa-home"></i> Set library and desk</a>
35
                            [% ELSE %]
33
                            <a class="circ-button" href="/cgi-bin/koha/circ/set-library.pl"><i class="fa fa-home"></i> Set library</a>
36
                            <a class="circ-button" href="/cgi-bin/koha/circ/set-library.pl"><i class="fa fa-home"></i> Set library</a>
37
                            [% END %]
34
                        </li>
38
                        </li>
35
                    [% END %]
39
                    [% END %]
36
                    [% IF ( fast_cataloging ) %]
40
                    [% IF ( fast_cataloging ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/set-library.tt (-1 / +4 lines)
Lines 5-11 Link Here
5
[% USE Koha %]
5
[% USE Koha %]
6
[% SET footerjs = 1 %]
6
[% SET footerjs = 1 %]
7
[% INCLUDE 'doc-head-open.inc' %]
7
[% INCLUDE 'doc-head-open.inc' %]
8
[% IF Koha.Preference('UseCirculationDesks') %]
9
<title>Koha &rsaquo; Circulation &rsaquo; Set library and desk</title>
10
[% ELSE %]
8
<title>Koha &rsaquo; Circulation &rsaquo; Set library</title>
11
<title>Koha &rsaquo; Circulation &rsaquo; Set library</title>
12
[% END %]
9
[% INCLUDE 'doc-head-close.inc' %]
13
[% INCLUDE 'doc-head-close.inc' %]
10
<style>
14
<style>
11
    .noshow {display: none;}
15
    .noshow {display: none;}
12
- 

Return to bug 24201