Lines 22-27
Link Here
|
22 |
[% END %] |
22 |
[% END %] |
23 |
|
23 |
|
24 |
[% WRAPPER 'sub-header.inc' %] |
24 |
[% WRAPPER 'sub-header.inc' %] |
|
|
25 |
[% SET page_title = "" %] |
26 |
[% IF ( CAN_user_parameters_select_loggedin_library ) %] |
27 |
[% IF Koha.Preference('UseCirculationDesks') %] |
28 |
[% page_title = "Set library and desk" %] |
29 |
[% ELSE %] |
30 |
[% page_title = "Set library" %] |
31 |
[% END %] |
32 |
[% ELSE %] |
33 |
[% IF Koha.Preference('UseCirculationDesks') %] |
34 |
[% page_title = "Set desk"%] |
35 |
[% END %] |
36 |
[% END %] |
37 |
|
25 |
<nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb"> |
38 |
<nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb"> |
26 |
<ol> |
39 |
<ol> |
27 |
<li> |
40 |
<li> |
Lines 31-37
Link Here
|
31 |
<a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> |
44 |
<a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> |
32 |
</li> |
45 |
</li> |
33 |
<li> |
46 |
<li> |
34 |
<a href="#" aria-current="page">Set library</a> |
47 |
<a href="#" aria-current="page">[% page_title | html %]</a> |
35 |
</li> |
48 |
</li> |
36 |
</ol> |
49 |
</ol> |
37 |
</nav> |
50 |
</nav> |
Lines 42-54
Link Here
|
42 |
<div class="col-sm-12"> |
55 |
<div class="col-sm-12"> |
43 |
<main> |
56 |
<main> |
44 |
<div class="row"> |
57 |
<div class="row"> |
45 |
|
|
|
46 |
[% IF Koha.Preference('CircSidebar') %] |
58 |
[% IF Koha.Preference('CircSidebar') %] |
47 |
<div class="col-sm-10 col-sm-push-2"> |
59 |
<div class="col-sm-10 col-sm-push-2"> |
48 |
<h1>Set library</h1> |
60 |
<h1>[% page_title | html%]</h1> |
49 |
[% ELSE %] |
61 |
[% ELSE %] |
50 |
<div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2"> |
62 |
<div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2"> |
51 |
<h1>Set library</h1> |
63 |
<h1>[% page_title | html %]</h1> |
52 |
[% END %] |
64 |
[% END %] |
53 |
|
65 |
|
54 |
|
66 |
|
Lines 84-96
Updated:<ul>
Link Here
|
84 |
[% ELSE %] |
96 |
[% ELSE %] |
85 |
|
97 |
|
86 |
<form method="post" action="set-library.pl"> |
98 |
<form method="post" action="set-library.pl"> |
87 |
[% IF !( Koha.Preference('IndependentBranches') && !CAN_user_superlibrarian && !CAN_user_editcatalogue_edit_catalogue ) %] |
99 |
[% IF ( CAN_user_parameters_select_loggedin_library ) %] |
88 |
<fieldset class="rows"> |
100 |
<fieldset class="rows"> |
89 |
<legend>Set library</legend> |
101 |
<legend>Set library</legend> |
90 |
<ol> |
102 |
<ol> |
91 |
<li><label for="branch">Choose library:</label> |
103 |
<li><label for="branch">Choose library:</label> |
92 |
<select name="branch" id="branch"> |
104 |
<select name="branch" id="branch"> |
93 |
[% PROCESS options_for_libraries libraries => Branches.all( selected => branch ) %] |
105 |
[% PROCESS options_for_libraries libraries => Branches.all( selected => branch, unfiltered => 1 ) %] |
94 |
</select></li> |
106 |
</select></li> |
95 |
</ol> |
107 |
</ol> |
96 |
</fieldset> |
108 |
</fieldset> |
97 |
- |
|
|