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