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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/serials-advsearch.inc (-1 / +2 lines)
Lines 1-3 Link Here
1
[% PROCESS 'i18n.inc' %]
1
[% PROCESS 'html_helpers.inc' %]
2
[% PROCESS 'html_helpers.inc' %]
2
<div id="advsearch" style="padding-bottom:3em;">
3
<div id="advsearch" style="padding-bottom:3em;">
3
    <form action="/cgi-bin/koha/serials/serials-search.pl" method="get">
4
    <form action="/cgi-bin/koha/serials/serials-search.pl" method="get">
Lines 37-43 Link Here
37
                <li class="local">
38
                <li class="local">
38
                    <label for="branch">Library:</label>
39
                    <label for="branch">Library:</label>
39
                    <select id="branch" name="branch_filter">
40
                    <select id="branch" name="branch_filter">
40
                        <option value="">All</option>
41
                        <option value="">[% tp('All libraries/branches', 'All') | html %]</option>
41
                        [%# FIXME Should not we filter the libraries? %]
42
                        [%# FIXME Should not we filter the libraries? %]
42
                        [% PROCESS options_for_libraries libraries => Branches.all( selected => branch_filter, unfiltered => 1 ) %]
43
                        [% PROCESS options_for_libraries libraries => Branches.all( selected => branch_filter, unfiltered => 1 ) %]
43
                    </select>
44
                    </select>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/subscriptions-search.inc (-1 / +2 lines)
Lines 1-3 Link Here
1
[% PROCESS 'i18n.inc' %]
1
[% PROCESS 'html_helpers.inc' %]
2
[% PROCESS 'html_helpers.inc' %]
2
<div id="advsearch">
3
<div id="advsearch">
3
    <form action="" method="get">
4
    <form action="" method="get">
Lines 30-36 Link Here
30
              <li>
31
              <li>
31
                <label for="branch">Library:</label>
32
                <label for="branch">Library:</label>
32
                <select id="branch" name="branch_filter">
33
                <select id="branch" name="branch_filter">
33
                  <option value="">All</option>
34
                  <option value="">[% tp('All libraries/branches', 'All') | html %]</option>
34
                  [%# FIXME Should not we filter the libraries? %]
35
                  [%# FIXME Should not we filter the libraries? %]
35
                  [% PROCESS options_for_libraries libraries => Branches.all( selected => branch_filter, unfiltered => 1 ) %]
36
                  [% PROCESS options_for_libraries libraries => Branches.all( selected => branch_filter, unfiltered => 1 ) %]
36
                </select>
37
                </select>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt (-1 / +2 lines)
Lines 3-8 Link Here
3
[% USE AuthorisedValues %]
3
[% USE AuthorisedValues %]
4
[% USE KohaDates %]
4
[% USE KohaDates %]
5
[% USE Branches %]
5
[% USE Branches %]
6
[% PROCESS 'i18n.inc' %]
6
[% SET footerjs = 1 %]
7
[% SET footerjs = 1 %]
7
[% INCLUDE 'doc-head-open.inc' %]
8
[% INCLUDE 'doc-head-open.inc' %]
8
<title>Invoices &rsaquo; Acquisitions &rsaquo; Koha</title>
9
<title>Invoices &rsaquo; Acquisitions &rsaquo; Koha</title>
Lines 379-385 Link Here
379
                            <li>
380
                            <li>
380
                                <label for="branch">Library:</label>
381
                                <label for="branch">Library:</label>
381
                                <select id="branch" name="branch">
382
                                <select id="branch" name="branch">
382
                                    <option value="">All</option>
383
                                    <option value="">[% tp('All libraries/branches', 'All') | html %]</option>
383
                                    [%# FIXME Should not we filter the libraries %]
384
                                    [%# FIXME Should not we filter the libraries %]
384
                                    [% PROCESS options_for_libraries libraries => Branches.all( selected => branch, unfiltered => 1 ) %]
385
                                    [% PROCESS options_for_libraries libraries => Branches.all( selected => branch, unfiltered => 1 ) %]
385
                                </select>
386
                                </select>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt (-1 / +2 lines)
Lines 8-13 Link Here
8
[% USE TablesSettings %]
8
[% USE TablesSettings %]
9
[% USE Koha %]
9
[% USE Koha %]
10
[% SET footerjs = 1 %]
10
[% SET footerjs = 1 %]
11
[% PROCESS 'i18n.inc' %]
11
[% INCLUDE 'doc-head-open.inc' %]
12
[% INCLUDE 'doc-head-open.inc' %]
12
<title>Holds queue &rsaquo; Circulation &rsaquo; Koha</title>
13
<title>Holds queue &rsaquo; Circulation &rsaquo; Koha</title>
13
[% INCLUDE 'doc-head-close.inc' %]
14
[% INCLUDE 'doc-head-close.inc' %]
Lines 250-256 Link Here
250
                    <label for="branchlimit">Library: </label>
251
                    <label for="branchlimit">Library: </label>
251
                    <select name="branchlimit" id="branchlimit">
252
                    <select name="branchlimit" id="branchlimit">
252
                        [% IF CAN_user_superlibrarian || !Koha.Preference('IndependentBranches') %]
253
                        [% IF CAN_user_superlibrarian || !Koha.Preference('IndependentBranches') %]
253
                            <option value="">All</option>
254
                            <option value="">[% tp('All libraries/branches', 'All') | html %]</option>
254
                        [% END %]
255
                        [% END %]
255
                        [% PROCESS options_for_libraries libraries => Branches.all( selected => branchlimit, only_from_group => 1 ) %]
256
                        [% PROCESS options_for_libraries libraries => Branches.all( selected => branchlimit, only_from_group => 1 ) %]
256
                    </select>
257
                    </select>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep5.tt (-1 / +2 lines)
Lines 1-3 Link Here
1
[% PROCESS 'i18n.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %]
2
<title>
3
<title>
3
    [% IF all_done %]
4
    [% IF all_done %]
Lines 60-66 Link Here
60
                                    <label for="branchname" class="required"> Library branch</label>
61
                                    <label for="branchname" class="required"> Library branch</label>
61
                                    <select name="branch" id="branchname" required="required">
62
                                    <select name="branch" id="branchname" required="required">
62
                                        <option value=""> Choose</option>
63
                                        <option value=""> Choose</option>
63
                                        <option value="*" selected="selected">All</option>
64
                                        <option value="*" selected="selected">[% tp('All libraries/branches', 'All') | html %]</option>
64
                                        [% FOREACH library IN libraries %]
65
                                        [% FOREACH library IN libraries %]
65
                                            <option value="[% library.branchcode | html %]"> [% library.branchname | html %]</option>
66
                                            <option value="[% library.branchcode | html %]"> [% library.branchname | html %]</option>
66
                                        [% END %]
67
                                        [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/cash_register_stats.tt (-1 / +2 lines)
Lines 8-13 Link Here
8
[% USE Registers %]
8
[% USE Registers %]
9
[% SET footerjs = 1 %]
9
[% SET footerjs = 1 %]
10
[% PROCESS 'accounts.inc' %]
10
[% PROCESS 'accounts.inc' %]
11
[% PROCESS 'i18n.inc' %]
11
[% INCLUDE 'doc-head-open.inc' %]
12
[% INCLUDE 'doc-head-open.inc' %]
12
<title>[% IF ( do_it ) %]Cash register statistics &rsaquo; Results[% ELSE %]Cash register statistics[% END %] &rsaquo; Reports &rsaquo; Koha</title>
13
<title>[% IF ( do_it ) %]Cash register statistics &rsaquo; Results[% ELSE %]Cash register statistics[% END %] &rsaquo; Reports &rsaquo; Koha</title>
13
[% INCLUDE 'doc-head-close.inc' %]
14
[% INCLUDE 'doc-head-close.inc' %]
Lines 111-117 Link Here
111
                <li>
112
                <li>
112
                    <label>Transaction library</label>
113
                    <label>Transaction library</label>
113
                    <select name="branch" id="branch">
114
                    <select name="branch" id="branch">
114
                        <option value="ALL">All</option>
115
                        <option value="ALL">[% tp('All libraries/branches', 'All') | html %]</option>
115
                        [% FOREACH branchloo IN branchloop %]
116
                        [% FOREACH branchloo IN branchloop %]
116
                            [% IF ( branchloo.selected ) %]
117
                            [% IF ( branchloo.selected ) %]
117
                            <option value="[% branchloo.branchcode | html %]" selected="selected">[% branchloo.branchname | html %]</option>
118
                            <option value="[% branchloo.branchcode | html %]" selected="selected">[% branchloo.branchname | html %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt (-1 / +2 lines)
Lines 6-11 Link Here
6
[% USE KohaDates %]
6
[% USE KohaDates %]
7
[% USE ItemTypes %]
7
[% USE ItemTypes %]
8
[% USE Price %]
8
[% USE Price %]
9
[% PROCESS 'i18n.inc' %]
9
[% SET footerjs = 1 %]
10
[% SET footerjs = 1 %]
10
[% INCLUDE 'doc-head-open.inc' %]
11
[% INCLUDE 'doc-head-open.inc' %]
11
<title>Lost items &rsaquo; Reports &rsaquo; Koha</title>
12
<title>Lost items &rsaquo; Reports &rsaquo; Koha</title>
Lines 142-148 Link Here
142
143
143
	<li><label for="barcodefilter">Barcode: </label><input type="text" name="barcodefilter" id="barcodefilter" size="6" /></li>
144
	<li><label for="barcodefilter">Barcode: </label><input type="text" name="barcodefilter" id="barcodefilter" size="6" /></li>
144
	<li><label for="branchfilter">Library: </label><select name="branchfilter" id="branchfilter">
145
	<li><label for="branchfilter">Library: </label><select name="branchfilter" id="branchfilter">
145
                <option value="">All</option>
146
                <option value="">[% tp('All libraries/branches', 'All') | html %]</option>
146
                [% PROCESS options_for_libraries libraries => Branches.all() %]
147
                [% PROCESS options_for_libraries libraries => Branches.all() %]
147
            </select></li>
148
            </select></li>
148
    <li><label for="itemtypesfilter">Item type: </label><select name="itemtypesfilter" id="itemtypesfilter">
149
    <li><label for="itemtypesfilter">Item type: </label><select name="itemtypesfilter" id="itemtypesfilter">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/checkexpiration.tt (-2 / +2 lines)
Lines 1-6 Link Here
1
[% USE raw %]
1
[% USE raw %]
2
[% USE Branches %]
2
[% USE Branches %]
3
[% USE KohaDates %]
3
[% USE KohaDates %]
4
[% PROCESS 'i18n.inc' %]
4
[% SET footerjs = 1 %]
5
[% SET footerjs = 1 %]
5
[% INCLUDE 'doc-head-open.inc' %]
6
[% INCLUDE 'doc-head-open.inc' %]
6
<title>Check expiration &rsaquo; Serials &rsaquo; Koha</title>
7
<title>Check expiration &rsaquo; Serials &rsaquo; Koha</title>
Lines 44-50 Link Here
44
        [% IF can_change_library %]
45
        [% IF can_change_library %]
45
        <li><label for="branch">Library:</label>
46
        <li><label for="branch">Library:</label>
46
        <select id="branch" name="branch">
47
        <select id="branch" name="branch">
47
            <option value="">All</option>
48
            <option value="">[% tp('All libraries/branches', 'All') | html %]</option>
48
            [% PROCESS options_for_libraries libraries => Branches.all( selected => branch ) %]
49
            [% PROCESS options_for_libraries libraries => Branches.all( selected => branch ) %]
49
        </select>
50
        </select>
50
        </li>
51
        </li>
51
- 

Return to bug 31736