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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (+5 lines)
Lines 3281-3286 label { Link Here
3281
        margin-left: 20px;
3281
        margin-left: 20px;
3282
        padding-left: 0;
3282
        padding-left: 0;
3283
    }
3283
    }
3284
3285
    &.tip {
3286
        display: block;
3287
        margin: .5em 0;
3288
    }
3284
}
3289
}
3285
3290
3286
.radio {
3291
.radio {
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/acquisitions-search.inc (-1 / +1 lines)
Lines 2-8 Link Here
2
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName | html %]</a></h1><!-- Begin Acquisitions Resident Search Box -->
2
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName | html %]</a></h1><!-- Begin Acquisitions Resident Search Box -->
3
<div id="header_search">
3
<div id="header_search">
4
<div id="supplier_search" class="residentsearch">
4
<div id="supplier_search" class="residentsearch">
5
	<p class="tip">Search vendors:</p>
5
    <label class="tip" for="supplier">Search vendors:</label>
6
        <form name="findsupplier" action="/cgi-bin/koha/acqui/booksellers.pl" method="post">
6
        <form name="findsupplier" action="/cgi-bin/koha/acqui/booksellers.pl" method="post">
7
           <input type="text" size="25" name="supplier" id="supplier" class="focus" />
7
           <input type="text" size="25" name="supplier" id="supplier" class="focus" />
8
            <input type="submit" class="submit" value="Submit" /></form>
8
            <input type="submit" class="submit" value="Submit" /></form>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/adv-search.inc (-3 / +3 lines)
Lines 6-19 Link Here
6
        [% INCLUDE 'patron-search-box.inc' %]
6
        [% INCLUDE 'patron-search-box.inc' %]
7
        [% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
7
        [% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
8
            <div id="checkin_search" class="residentsearch">
8
            <div id="checkin_search" class="residentsearch">
9
                <p class="tip">Scan a barcode to check in:</p>
9
                <label class="tip" for="ret_barcode">Scan a barcode to check in:</label>
10
                <form method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off">
10
                <form method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off">
11
                    <input type="text" name="barcode" class="head-searchbox" id="ret_barcode" size="40" accesskey="r" />
11
                    <input type="text" name="barcode" class="head-searchbox" id="ret_barcode" size="40" accesskey="r" />
12
                    <input value="Submit" class="submit" type="submit" />
12
                    <input value="Submit" class="submit" type="submit" />
13
                </form>
13
                </form>
14
            </div>
14
            </div>
15
            <div id="renew_search" class="residentsearch">
15
            <div id="renew_search" class="residentsearch">
16
                <p class="tip">Scan a barcode to renew:</p>
16
                <label class="tip" for="ren_barcode">Scan a barcode to renew:</label>
17
                <form method="post" action="/cgi-bin/koha/circ/renew.pl" autocomplete="off">
17
                <form method="post" action="/cgi-bin/koha/circ/renew.pl" autocomplete="off">
18
                    <input type="text" class="head-searchbox" name="barcode" id="ren_barcode" size="40" />
18
                    <input type="text" class="head-searchbox" name="barcode" id="ren_barcode" size="40" />
19
                    <input value="Submit" class="submit" type="submit" />
19
                    <input value="Submit" class="submit" type="submit" />
Lines 23-29 Link Here
23
23
24
        [% IF CAN_user_borrowers_edit_borrowers %]
24
        [% IF CAN_user_borrowers_edit_borrowers %]
25
            <div id="patron_search" class="residentsearch">
25
            <div id="patron_search" class="residentsearch">
26
                <p class="tip">Enter patron card number or partial name:</p>
26
                <label class="tip" for="searchmember">Enter patron card number or partial name:</label>
27
                <form action="/cgi-bin/koha/members/member.pl" method="post">
27
                <form action="/cgi-bin/koha/members/member.pl" method="post">
28
                    <input name="searchmember" class="head-searchbox" id="searchmember" size="40" type="text" />
28
                    <input name="searchmember" class="head-searchbox" id="searchmember" size="40" type="text" />
29
                    <input type="hidden" name="quicksearch" value="1" />
29
                    <input type="hidden" name="quicksearch" value="1" />
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search.inc (-9 / +9 lines)
Lines 3-13 Link Here
3
<!-- Begin Authorities Resident Search Box -->
3
<!-- Begin Authorities Resident Search Box -->
4
<div id="header_search" class="residentsearch">
4
<div id="header_search" class="residentsearch">
5
    <div id="mainmain_heading" class="residentsearch">
5
    <div id="mainmain_heading" class="residentsearch">
6
    <p class="tip">Enter main heading ($a only):</p>
7
    <form action="/cgi-bin/koha/authorities/authorities-home.pl" method="get">
6
    <form action="/cgi-bin/koha/authorities/authorities-home.pl" method="get">
7
        <label class="tip" for="authtype_main_heading_a">Enter main heading ($a only):</label>
8
        <input type="hidden" name="op" value="do_search" />
8
        <input type="hidden" name="op" value="do_search" />
9
        <input type="hidden" name="type" value="intranet" />
9
        <input type="hidden" name="type" value="intranet" />
10
        <select name="authtypecode">
10
        <select name="authtypecode" id="authtype_main_heading_a">
11
        [% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %]
11
        [% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %]
12
        [% FOREACH authority_type IN authority_types %]
12
        [% FOREACH authority_type IN authority_types %]
13
            [% IF authority_type.authtypecode == authtypecode %]
13
            [% IF authority_type.authtypecode == authtypecode %]
Lines 59-69 Link Here
59
    </form>
59
    </form>
60
    </div>
60
    </div>
61
    <div id="main_heading" class="residentsearch">
61
    <div id="main_heading" class="residentsearch">
62
    <p class="tip">Enter main heading:</p>
63
    <form action="/cgi-bin/koha/authorities/authorities-home.pl" method="get">
62
    <form action="/cgi-bin/koha/authorities/authorities-home.pl" method="get">
63
        <label class="tip" for="authtype_main_heading">Enter main heading:</label>
64
        <input type="hidden" name="op" value="do_search" />
64
        <input type="hidden" name="op" value="do_search" />
65
        <input type="hidden" name="type" value="intranet" />
65
        <input type="hidden" name="type" value="intranet" />
66
        <select name="authtypecode">
66
        <select name="authtypecode" id="authtype_main_heading">
67
        [% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %]
67
        [% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %]
68
        [% FOREACH authority_type IN authority_types %]
68
        [% FOREACH authority_type IN authority_types %]
69
            [% IF authority_type.authtypecode == authtypecode %]
69
            [% IF authority_type.authtypecode == authtypecode %]
Lines 93-99 Link Here
93
            <option value="is">is exactly</option>
93
            <option value="is">is exactly</option>
94
            [% END %]
94
            [% END %]
95
        </select>
95
        </select>
96
        <input id="value_mainentry" type="text" name="value" value="[% value | html %]" class="head-searchbox" />
96
        <input id="value_mainheading" type="text" name="value" value="[% value | html %]" class="head-searchbox" />
97
        <select name="orderby">
97
        <select name="orderby">
98
            [% IF ( orderby == 'HeadingAsc' ) %]
98
            [% IF ( orderby == 'HeadingAsc' ) %]
99
            <option value="HeadingAsc" selected="selected">Heading A-Z</option>
99
            <option value="HeadingAsc" selected="selected">Heading A-Z</option>
Lines 115-125 Link Here
115
    </form>
115
    </form>
116
    </div>
116
    </div>
117
    <div id="matchheading_search" class="residentsearch">
117
    <div id="matchheading_search" class="residentsearch">
118
    <p class="tip">Enter any heading:</p>
119
    <form action="/cgi-bin/koha/authorities/authorities-home.pl" method="get">
118
    <form action="/cgi-bin/koha/authorities/authorities-home.pl" method="get">
119
        <label class="tip" for="authtype_all_headings">Enter any heading:</label>
120
        <input type="hidden" name="op" value="do_search" />
120
        <input type="hidden" name="op" value="do_search" />
121
        <input type="hidden" name="type" value="intranet" />
121
        <input type="hidden" name="type" value="intranet" />
122
        <select name="authtypecode">
122
        <select name="authtypecode" id="authtype_all_headings">
123
        [% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %]
123
        [% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %]
124
        [% FOREACH authority_type IN authority_types %]
124
        [% FOREACH authority_type IN authority_types %]
125
            [% IF authority_type.authtypecode == authtypecode %]
125
            [% IF authority_type.authtypecode == authtypecode %]
Lines 169-179 Link Here
169
    </form>
169
    </form>
170
    </div>
170
    </div>
171
    <div id="entire_record" class="residentsearch">
171
    <div id="entire_record" class="residentsearch">
172
    <p class="tip">Enter any authority field:</p>
173
    <form action="/cgi-bin/koha/authorities/authorities-home.pl" method="get">
172
    <form action="/cgi-bin/koha/authorities/authorities-home.pl" method="get">
173
        <label class="tip" for="authtype_entire_record">Enter any authority field:</label>
174
        <input type="hidden" name="op" value="do_search" />
174
        <input type="hidden" name="op" value="do_search" />
175
        <input type="hidden" name="type" value="intranet" />
175
        <input type="hidden" name="type" value="intranet" />
176
        <select name="authtypecode">
176
        <select name="authtypecode" id="authtype_entire_record">
177
        [% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %]
177
        [% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %]
178
        [% FOREACH authority_type IN authority_types %]
178
        [% FOREACH authority_type IN authority_types %]
179
            [% IF authority_type.authtypecode == authtypecode %]
179
            [% IF authority_type.authtypecode == authtypecode %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/budgets-admin-search.inc (-1 / +1 lines)
Lines 28-35 Link Here
28
28
29
    [% IF ( CAN_user_catalogue ) %]
29
    [% IF ( CAN_user_catalogue ) %]
30
    <div id="catalog_search" class="residentsearch">
30
    <div id="catalog_search" class="residentsearch">
31
    <p class="tip">Enter search keywords:</p>
32
        <form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
31
        <form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
32
            <label class="tip" for="search-form">Enter search keywords:</label>
33
             [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %][% INCLUDE 'search_indexes.inc' %][% END %]
33
             [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %][% INCLUDE 'search_indexes.inc' %][% END %]
34
             <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="query form-text" />
34
             <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="query form-text" />
35
                <input type="submit" value="Submit"  class="submit" />
35
                <input type="submit" value="Submit"  class="submit" />
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc (-4 / +8 lines)
Lines 7-22 Link Here
7
7
8
[% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
8
[% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
9
<div id="checkin_search" class="residentsearch">
9
<div id="checkin_search" class="residentsearch">
10
    <p class="tip">Scan a barcode to check in:</p>
11
    <form method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off">
10
    <form method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off">
11
        <label class="tip" for="ret_barcode">Scan a barcode to check in:</label>
12
        <input class="head-searchbox" name="barcode" id="ret_barcode" size="40" type="text" />
12
        <input class="head-searchbox" name="barcode" id="ret_barcode" size="40" type="text" />
13
13
14
        <input value="Submit" class="submit" type="submit" />
14
        <input value="Submit" class="submit" type="submit" />
15
    </form>
15
    </form>
16
</div>
16
</div>
17
<div id="renew_search" class="residentsearch">
17
<div id="renew_search" class="residentsearch">
18
    <p class="tip">Scan a barcode to renew:</p>
19
    <form method="post" action="/cgi-bin/koha/circ/renew.pl" autocomplete="off">
18
    <form method="post" action="/cgi-bin/koha/circ/renew.pl" autocomplete="off">
19
        <label class="tip" for="ren_barcode">Scan a barcode to renew:</label>
20
        <input class="head-searchbox" name="barcode" id="ren_barcode" size="40" type="text" />
20
        <input class="head-searchbox" name="barcode" id="ren_barcode" size="40" type="text" />
21
        <input value="Submit" class="submit" type="submit" />
21
        <input value="Submit" class="submit" type="submit" />
22
    </form>
22
    </form>
Lines 25-33 Link Here
25
25
26
[% IF ( CAN_user_catalogue ) %]
26
[% IF ( CAN_user_catalogue ) %]
27
<div id="catalog_search" class="residentsearch">
27
<div id="catalog_search" class="residentsearch">
28
    <p class="tip">Enter search keywords:</p>
29
    <form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
28
    <form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
30
        [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %][% INCLUDE 'search_indexes.inc' %][% END %]
29
        [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %]
30
            <label class="tip" for="idx">Enter search keywords:</label>
31
            [% INCLUDE 'search_indexes.inc' %]
32
        [% ELSE %]
33
            <label class="tip" for="search-form">Enter search keywords:</label>
34
        [% END %]
31
        <input type="text" name="q" id="search-form" size="40" value="[% ms_value | html %]" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
35
        <input type="text" name="q" id="search-form" size="40" value="[% ms_value | html %]" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
32
        <input type="submit" class="submit" value="Submit" />
36
        <input type="submit" class="submit" value="Submit" />
33
    </form>
37
    </form>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/cataloging-search.inc (-6 / +10 lines)
Lines 3-11 Link Here
3
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName | html %]</a></h1><!-- Begin Cataloging Resident Search Box -->
3
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName | html %]</a></h1><!-- Begin Cataloging Resident Search Box -->
4
    <div id="header_search">
4
    <div id="header_search">
5
        <div id="addbooks_search" class="residentsearch">
5
        <div id="addbooks_search" class="residentsearch">
6
        <p class="tip">Search the catalog and the reservoir:</p>
7
            <form name="search" action="addbooks.pl">
6
            <form name="search" action="addbooks.pl">
8
                <input class="head-searchbox" type="text" name="q" size="40" />
7
                <label class="tip" for="cat_search">Search the catalog and the reservoir:</label>
8
                <input class="head-searchbox" type="text" name="q" id="cat_search" size="40" />
9
                <input type="submit" class="submit" value="Submit" />
9
                <input type="submit" class="submit" value="Submit" />
10
            </form>
10
            </form>
11
        </div>
11
        </div>
Lines 14-28 Link Here
14
14
15
        [% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
15
        [% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
16
        <div id="checkin_search" class="residentsearch">
16
        <div id="checkin_search" class="residentsearch">
17
            <p class="tip">Scan a barcode to check in:</p>
18
            <form method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off">
17
            <form method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off">
18
                <label class="tip" for="ret_barcode">Scan a barcode to check in:</label>
19
                <input class="head-searchbox" type="text" name="barcode" id="ret_barcode" size="40" />
19
                <input class="head-searchbox" type="text" name="barcode" id="ret_barcode" size="40" />
20
                <input value="Submit" class="submit" type="submit" />
20
                <input value="Submit" class="submit" type="submit" />
21
            </form>
21
            </form>
22
        </div>
22
        </div>
23
        <div id="renew_search" class="residentsearch">
23
        <div id="renew_search" class="residentsearch">
24
        <p class="tip">Scan a barcode to renew:</p>
25
            <form method="post" action="/cgi-bin/koha/circ/renew.pl" autocomplete="off">
24
            <form method="post" action="/cgi-bin/koha/circ/renew.pl" autocomplete="off">
25
                <label class="tip" for="ren_barcode">Scan a barcode to renew:</label>
26
                <input class="head-searchbox" type="text" name="barcode" id="ren_barcode" size="40" />
26
                <input class="head-searchbox" type="text" name="barcode" id="ren_barcode" size="40" />
27
                <input value="Submit" class="submit" type="submit" />
27
                <input value="Submit" class="submit" type="submit" />
28
            </form>
28
            </form>
Lines 31-39 Link Here
31
31
32
32
33
        <div id="catalog_search" class="residentsearch">
33
        <div id="catalog_search" class="residentsearch">
34
            <p class="tip">Enter search keywords:</p>
35
            <form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
34
            <form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
36
                [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %][% INCLUDE 'search_indexes.inc' %][% END %]
35
                [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %]
36
                    <label class="tip" for="idx">Enter search keywords:</label>
37
                    [% INCLUDE 'search_indexes.inc' %]
38
                [% ELSE %]
39
                    <label class="tip" for="search-form">Enter search keywords:</label>
40
                [% END %]
37
                <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
41
                <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
38
                <input type="submit" class="submit" value="Submit" />
42
                <input type="submit" class="submit" value="Submit" />
39
            </form>
43
            </form>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/checkin-search.inc (-3 / +7 lines)
Lines 6-13 Link Here
6
6
7
[% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
7
[% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
8
<div id="renew_search" class="residentsearch">
8
<div id="renew_search" class="residentsearch">
9
    <p class="tip">Scan a barcode to renew:</p>
10
    <form method="post" action="/cgi-bin/koha/circ/renew.pl" autocomplete="off">
9
    <form method="post" action="/cgi-bin/koha/circ/renew.pl" autocomplete="off">
10
        <label class="tip" for="ren_barcode">Scan a barcode to renew:</label>
11
        <input class="head-searchbox" type="text" name="barcode" id="ren_barcode" size="40" />
11
        <input class="head-searchbox" type="text" name="barcode" id="ren_barcode" size="40" />
12
        <input value="Submit" class="submit" type="submit" />
12
        <input value="Submit" class="submit" type="submit" />
13
    </form>
13
    </form>
Lines 16-24 Link Here
16
16
17
[% IF ( CAN_user_catalogue ) %]
17
[% IF ( CAN_user_catalogue ) %]
18
<div id="catalog_search" class="residentsearch">
18
<div id="catalog_search" class="residentsearch">
19
    <p class="tip">Enter search keywords:</p>
20
    <form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
19
    <form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
21
        [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %][% INCLUDE 'search_indexes.inc' %][% END %]
20
        [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %]
21
            <label class="tip" for="idx">Enter search keywords:</label>
22
            [% INCLUDE 'search_indexes.inc' %]
23
        [% ELSE %]
24
            <label class="tip" for="search-form">Enter search keywords:</label>
25
        [% END %]
22
        <input class="head-searchbox" type="text" name="q" id="search-form" size="40" />
26
        <input class="head-searchbox" type="text" name="q" id="search-form" size="40" />
23
        <input type="submit" class="submit" value="Submit"/>
27
        <input type="submit" class="submit" value="Submit"/>
24
    </form>
28
    </form>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-search.inc (-4 / +8 lines)
Lines 6-20 Link Here
6
    [% INCLUDE 'patron-search-box.inc' %]
6
    [% INCLUDE 'patron-search-box.inc' %]
7
[% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
7
[% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
8
<div id="checkin_search" class="residentsearch">
8
<div id="checkin_search" class="residentsearch">
9
    <p class="tip">Scan a barcode to check in:</p>
10
    <form method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off">
9
    <form method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off">
10
        <label class="tip" for="ret_barcode">Scan a barcode to check in:</label>
11
        <input class="head-searchbox" name="barcode" id="ret_barcode" size="40" accesskey="r" type="text" />
11
        <input class="head-searchbox" name="barcode" id="ret_barcode" size="40" accesskey="r" type="text" />
12
        <input value="Submit" class="submit" type="submit" />
12
        <input value="Submit" class="submit" type="submit" />
13
    </form>
13
    </form>
14
</div>
14
</div>
15
<div id="renew_search" class="residentsearch">
15
<div id="renew_search" class="residentsearch">
16
    <p class="tip">Scan a barcode to renew:</p>
17
    <form method="post" action="/cgi-bin/koha/circ/renew.pl" autocomplete="off">
16
    <form method="post" action="/cgi-bin/koha/circ/renew.pl" autocomplete="off">
17
        <label class="tip" for="ren_barcode">Scan a barcode to renew:</label>
18
        <input class="head-searchbox" name="barcode" id="ren_barcode" size="40" type="text" />
18
        <input class="head-searchbox" name="barcode" id="ren_barcode" size="40" type="text" />
19
        <input value="Submit" class="submit" type="submit" />
19
        <input value="Submit" class="submit" type="submit" />
20
    </form>
20
    </form>
Lines 22-30 Link Here
22
[% END %]
22
[% END %]
23
[% IF ( CAN_user_catalogue ) %]
23
[% IF ( CAN_user_catalogue ) %]
24
<div id="catalog_search" class="residentsearch">
24
<div id="catalog_search" class="residentsearch">
25
    <p class="tip">Enter search keywords:</p>
26
    <form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
25
    <form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
27
        [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %][% INCLUDE 'search_indexes.inc' %][% END %]
26
        [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %]
27
            <label class="tip" for="idx">Enter search keywords:</label>
28
            [% INCLUDE 'search_indexes.inc' %]
29
        [% ELSE %]
30
            <label class="tip" for="search-form">Enter search keywords:</label>
31
        [% END %]
28
        <input class="head-searchbox" type="text" name="q" id="search-form" size="40" accesskey="q" />
32
        <input class="head-searchbox" type="text" name="q" id="search-form" size="40" accesskey="q" />
29
        <input type="submit" class="submit" value="Submit"/>
33
        <input type="submit" class="submit" value="Submit"/>
30
    </form>
34
    </form>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/cities-admin-search.inc (-4 / +8 lines)
Lines 3-11 Link Here
3
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName | html %]</a></h1><!-- Begin Cities Resident Search Box -->
3
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName | html %]</a></h1><!-- Begin Cities Resident Search Box -->
4
<div id="header_search">
4
<div id="header_search">
5
	<div id="city_search" class="residentsearch">
5
	<div id="city_search" class="residentsearch">
6
    <p class="tip">City search:</p>
7
	<form action="[% script_name | html %]" method="post">
6
	<form action="[% script_name | html %]" method="post">
8
        <input class="head-searchbox" type="text" name="city_name_filter" value="[% city_name_filter | html %]" size="40" />
7
        <label class="tip" for="city_name_filter">City search:</label>
8
        <input class="head-searchbox" type="text" name="city_name_filter" id="city_name_filter" value="[% city_name_filter | html %]" size="40" />
9
		<input type="submit" name="submit" value="OK" class="submit" />
9
		<input type="submit" name="submit" value="OK" class="submit" />
10
	</form>
10
	</form>
11
	</div>
11
	</div>
Lines 14-22 Link Here
14
14
15
	[% IF ( CAN_user_catalogue ) %]
15
	[% IF ( CAN_user_catalogue ) %]
16
    <div id="catalog_search" class="residentsearch">
16
    <div id="catalog_search" class="residentsearch">
17
	<p class="tip">Enter search keywords:</p>
18
		<form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
17
		<form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
19
             [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %][% INCLUDE 'search_indexes.inc' %][% END %]
18
            [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %]
19
                <label class="tip" for="idx">Enter search keywords:</label>
20
                [% INCLUDE 'search_indexes.inc' %]
21
            [% ELSE %]
22
                <label class="tip" for="search-form">Enter search keywords:</label>
23
            [% END %]
20
             <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
24
             <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
21
				<input type="submit" value="Submit"  class="submit" />
25
				<input type="submit" value="Submit"  class="submit" />
22
		</form>
26
		</form>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/contracts-admin-search.inc (-4 / +8 lines)
Lines 4-12 Link Here
4
4
5
<div id="header_search">
5
<div id="header_search">
6
	<div id="contract_description_search" class="residentsearch">
6
	<div id="contract_description_search" class="residentsearch">
7
	<p class="tip">Search by contract name or/and description:</p>
8
	<form action="[% script_name | html %]" method="post">
7
	<form action="[% script_name | html %]" method="post">
9
        <input class="head-searchbox" type="text" name="searchfield" size="40" value="[% searchfield | html %]" />
8
        <label class="tip" for="searchfield">Search by contract name or/and description:</label>
9
        <input class="head-searchbox" type="text" name="searchfield" id="searchfield" size="40" value="[% searchfield | html %]" />
10
		<input type="submit" class="submit" name="search" value="Search" />
10
		<input type="submit" class="submit" name="search" value="Search" />
11
	</form>	
11
	</form>	
12
	</div>
12
	</div>
Lines 15-23 Link Here
15
15
16
	[% IF ( CAN_user_catalogue ) %]
16
	[% IF ( CAN_user_catalogue ) %]
17
    <div id="catalog_search" class="residentsearch">
17
    <div id="catalog_search" class="residentsearch">
18
	<p class="tip">Enter search keywords:</p>
19
		<form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
18
		<form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
20
             [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %][% INCLUDE 'search_indexes.inc' %][% END %]
19
        [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %]
20
            <label class="tip" for="idx">Enter search keywords:</label>
21
            [% INCLUDE 'search_indexes.inc' %]
22
        [% ELSE %]
23
            <label class="tip" for="search-form">Enter search keywords:</label>
24
        [% END %]
21
             <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
25
             <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
22
				<input type="submit" value="Submit"  class="submit" />
26
				<input type="submit" value="Submit"  class="submit" />
23
		</form>
27
		</form>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/currencies-admin-search.inc (-4 / +8 lines)
Lines 3-20 Link Here
3
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName | html %]</a></h1><!-- Begin Currencies Resident Search Box -->
3
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName | html %]</a></h1><!-- Begin Currencies Resident Search Box -->
4
<div id="header_search">
4
<div id="header_search">
5
	<div id="currency_search" class="residentsearch">
5
	<div id="currency_search" class="residentsearch">
6
    <p class="tip">Currencies search:</p>
7
        <form action="[% script_name | html %]" method="post">
6
        <form action="[% script_name | html %]" method="post">
8
                <input class="head-searchbox" type="text" name="description" size="40" value="[% searchfield | html %]" />
7
            <label class="tip" for="description">Currencies search:</label>
8
                <input class="head-searchbox" type="text" name="description" id="description" size="40" value="[% searchfield | html %]" />
9
                <input type="submit" class="submit" name="search" value="Search" />
9
                <input type="submit" class="submit" name="search" value="Search" />
10
        </form>	
10
        </form>	
11
	</div>
11
	</div>
12
    [% INCLUDE 'patron-search-box.inc' %]
12
    [% INCLUDE 'patron-search-box.inc' %]
13
	[% IF ( CAN_user_catalogue ) %]
13
	[% IF ( CAN_user_catalogue ) %]
14
    <div id="catalog_search" class="residentsearch">
14
    <div id="catalog_search" class="residentsearch">
15
	<p class="tip">Enter search keywords:</p>
16
		<form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
15
		<form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
17
             [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %][% INCLUDE 'search_indexes.inc' %][% END %]
16
            [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %]
17
                <label class="tip" for="idx">Enter search keywords:</label>
18
                [% INCLUDE 'search_indexes.inc' %]
19
            [% ELSE %]
20
                <label class="tip" for="search-form">Enter search keywords:</label>
21
            [% END %]
18
             <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
22
             <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
19
				<input type="submit" value="Submit"  class="submit" />
23
				<input type="submit" value="Submit"  class="submit" />
20
		</form>
24
		</form>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/desks-admin-search.inc (-4 / +8 lines)
Lines 3-11 Link Here
3
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName|html %]</a></h1><!-- Begin Desks Resident Search Box -->
3
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName|html %]</a></h1><!-- Begin Desks Resident Search Box -->
4
<div id="header_search">
4
<div id="header_search">
5
        <div id="desk_search" class="residentsearch">
5
        <div id="desk_search" class="residentsearch">
6
    <p class="tip">Desk search:</p>
7
        <form action="[% script_name|html %]" method="post">
6
        <form action="[% script_name|html %]" method="post">
8
        <input class="head-searchbox" type="text" name="desk_name" value="[% searchfield|html %]" size="40" />
7
            <label class="tip" for="desk_name">Desk search:</label>
8
        <input class="head-searchbox" type="text" name="desk_name" id="desk_name" value="[% searchfield|html %]" size="40" />
9
                <input type="submit" name="submit" value="OK" class="submit" />
9
                <input type="submit" name="submit" value="OK" class="submit" />
10
        </form>
10
        </form>
11
        </div>
11
        </div>
Lines 14-22 Link Here
14
14
15
        [% IF ( CAN_user_catalogue ) %]
15
        [% IF ( CAN_user_catalogue ) %]
16
    <div id="catalog_search" class="residentsearch">
16
    <div id="catalog_search" class="residentsearch">
17
        <p class="tip">Enter search keywords:</p>
18
                <form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
17
                <form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
19
             [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %][% INCLUDE 'search_indexes.inc' %][% END %]
18
            [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %]
19
                <label class="tip" for="idx">Enter search keywords:</label>
20
                [% INCLUDE 'search_indexes.inc' %]
21
            [% ELSE %]
22
                <label class="tip" for="search-form">Enter search keywords:</label>
23
            [% END %]
20
             <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
24
             <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
21
                                <input type="submit" value="Submit"  class="submit" />
25
                                <input type="submit" value="Submit"  class="submit" />
22
                </form>
26
                </form>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/home-search.inc (-4 / +4 lines)
Lines 6-19 Link Here
6
    [% INCLUDE 'patron-search-box.inc' %]
6
    [% INCLUDE 'patron-search-box.inc' %]
7
[% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
7
[% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
8
<div id="checkin_search" class="residentsearch">
8
<div id="checkin_search" class="residentsearch">
9
    <p class="tip">Scan a barcode to check in:</p>
9
    <label class="tip" for="ret_barcode">Scan a barcode to check in:</label>
10
    <form method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off">
10
    <form method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off">
11
        <input name="barcode" class="head-searchbox" id="ret_barcode" size="40" accesskey="r" type="text" />
11
        <input name="barcode" class="head-searchbox" id="ret_barcode" size="40" accesskey="r" type="text" />
12
        <input value="Submit" class="submit" type="submit" />
12
        <input value="Submit" class="submit" type="submit" />
13
    </form>
13
    </form>
14
</div>
14
</div>
15
<div id="renew_search" class="residentsearch">
15
<div id="renew_search" class="residentsearch">
16
    <p class="tip">Scan a barcode to renew:</p>
16
    <label class="tip" for="ren_barcode">Scan a barcode to renew:</label>
17
        <form method="post" action="/cgi-bin/koha/circ/renew.pl" autocomplete="off">
17
        <form method="post" action="/cgi-bin/koha/circ/renew.pl" autocomplete="off">
18
            <input class="head-searchbox" name="barcode" id="ren_barcode" size="40" type="text" />
18
            <input class="head-searchbox" name="barcode" id="ren_barcode" size="40" type="text" />
19
            <input value="Submit" class="submit" type="submit" />
19
            <input value="Submit" class="submit" type="submit" />
Lines 23-29 Link Here
23
23
24
[% IF CAN_user_borrowers_edit_borrowers %]
24
[% IF CAN_user_borrowers_edit_borrowers %]
25
<div id="patron_search" class="residentsearch">
25
<div id="patron_search" class="residentsearch">
26
    <p class="tip">Enter patron card number or partial name:</p>
26
    <label class="tip" for="searchmember">Enter patron card number or partial name:</label>
27
    <form action="/cgi-bin/koha/members/member.pl" method="post">
27
    <form action="/cgi-bin/koha/members/member.pl" method="post">
28
        <input name="searchmember" class="head-searchbox" id="searchmember" size="40" type="text" autocomplete="off" />
28
        <input name="searchmember" class="head-searchbox" id="searchmember" size="40" type="text" autocomplete="off" />
29
        <input type="hidden" name="quicksearch" value="1" />
29
        <input type="hidden" name="quicksearch" value="1" />
Lines 32-38 Link Here
32
</div>[% END %]
32
</div>[% END %]
33
[% IF ( CAN_user_catalogue ) %]
33
[% IF ( CAN_user_catalogue ) %]
34
<div id="catalog_search" class="residentsearch">
34
<div id="catalog_search" class="residentsearch">
35
    <p class="tip">Enter search keywords:</p>
35
    <label class="tip" for="search-form">Enter search keywords:</label>
36
    <form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
36
    <form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
37
        [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %][% INCLUDE 'search_indexes.inc' %][% END %]
37
        [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %][% INCLUDE 'search_indexes.inc' %][% END %]
38
        <input type="text" name="q" id="search-form" class="head-searchbox" size="40" accesskey="q" />
38
        <input type="text" name="q" id="search-form" class="head-searchbox" size="40" accesskey="q" />
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/letters-search.inc (-4 / +8 lines)
Lines 3-20 Link Here
3
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName | html %]</a></h1><!-- Begin Notices Resident Search Box -->
3
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName | html %]</a></h1><!-- Begin Notices Resident Search Box -->
4
<div id="header_search">
4
<div id="header_search">
5
	<div id="notices_search" class="residentsearch">
5
	<div id="notices_search" class="residentsearch">
6
    <p class="tip">Search existing notices:</p>
7
<form action="/cgi-bin/koha/tools/letter.pl" method="post">
6
<form action="/cgi-bin/koha/tools/letter.pl" method="post">
8
        <input class="head-searchbox" type="text" name="searchfield" size="40" value="" />
7
        <label class="tip" for="searchfield">Search existing notices:</label>
8
        <input class="head-searchbox" type="text" name="searchfield" id="searchfield" size="40" value="" />
9
                <input type="submit" class="submit" name="search" value="Search" />
9
                <input type="submit" class="submit" name="search" value="Search" />
10
        </form>	
10
        </form>	
11
	</div>
11
	</div>
12
    [% INCLUDE 'patron-search-box.inc' %]
12
    [% INCLUDE 'patron-search-box.inc' %]
13
	[% IF ( CAN_user_catalogue ) %]
13
	[% IF ( CAN_user_catalogue ) %]
14
    <div id="catalog_search" class="residentsearch">
14
    <div id="catalog_search" class="residentsearch">
15
	<p class="tip">Enter search keywords:</p>
16
		<form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
15
		<form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
17
            [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %][% INCLUDE 'search_indexes.inc' %][% END %]
16
            [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %]
17
                <label class="tip" for="idx">Enter search keywords:</label>
18
                [% INCLUDE 'search_indexes.inc' %]
19
            [% ELSE %]
20
                <label class="tip" for="search-form">Enter search keywords:</label>
21
            [% END %]
18
            <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
22
            <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
19
				<input type="submit" name="op" value="Submit"  class="submit" />
23
				<input type="submit" name="op" value="Submit"  class="submit" />
20
		</form>
24
		</form>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search-box.inc (-1 / +1 lines)
Lines 1-7 Link Here
1
[% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
1
[% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
2
    <div id="circ_search" class="residentsearch">
2
    <div id="circ_search" class="residentsearch">
3
    <p class="tip">Enter patron card number or partial name:</p>
4
    <form action="/cgi-bin/koha/circ/circulation.pl" id="patronsearch" method="post">
3
    <form action="/cgi-bin/koha/circ/circulation.pl" id="patronsearch" method="post">
4
    <label class="tip" for="findborrower">Enter patron card number or partial name:</label>
5
    [% IF ( PatronAutoComplete ) %]
5
    [% IF ( PatronAutoComplete ) %]
6
    <div class="autocomplete">
6
    <div class="autocomplete">
7
                <input autocomplete="off" id="findborrower" name="findborrower" size="40" class="head-searchbox focus" type="text" />
7
                <input autocomplete="off" id="findborrower" name="findborrower" size="40" class="head-searchbox focus" type="text" />
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc (-7 / +11 lines)
Lines 8-15 Link Here
8
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName | html %]</a></h1><!-- Begin Patrons Resident Search Box -->
8
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName | html %]</a></h1><!-- Begin Patrons Resident Search Box -->
9
<div id="header_search">
9
<div id="header_search">
10
    <div id="patron_search" class="residentsearch">
10
    <div id="patron_search" class="residentsearch">
11
    <p class="tip">Enter patron card number or partial name:</p>
12
    <form action="/cgi-bin/koha/members/member.pl" method="post">
11
    <form action="/cgi-bin/koha/members/member.pl" method="post">
12
        <label class="tip" for="searchmember">Enter patron card number or partial name:</label>
13
    <div class="autocomplete">
13
    <div class="autocomplete">
14
        <input id="searchmember" data-toggle="tooltip" size="25" class="head-searchbox focus" name="searchmember" type="text" value="[% searchmember | html %]" autocomplete="off" />
14
        <input id="searchmember" data-toggle="tooltip" size="25" class="head-searchbox focus" name="searchmember" type="text" value="[% searchmember | html %]" autocomplete="off" />
15
        <input type="hidden" name="quicksearch" value="1" />
15
        <input type="hidden" name="quicksearch" value="1" />
Lines 30-38 Link Here
30
                  [% display_name = PROCESS patron_fields name=s_o %]
30
                  [% display_name = PROCESS patron_fields name=s_o %]
31
                  [% NEXT IF !display_name.length %]
31
                  [% NEXT IF !display_name.length %]
32
                  [% IF searchfieldstype == s_o %]
32
                  [% IF searchfieldstype == s_o %]
33
                      <option selected="selected" value=[% s_o | html %]>[% display_name | $raw %]</option>
33
                      <option selected="selected" value="[% s_o | html %]">[% display_name | $raw %]</option>
34
                  [% ELSE %]
34
                  [% ELSE %]
35
                      <option value=[% s_o | html %]>[% display_name | $raw %]</option>
35
                      <option value="[% s_o | html %]">[% display_name | $raw %]</option>
36
                  [% END %]
36
                  [% END %]
37
              [% END %]
37
              [% END %]
38
            </select>
38
            </select>
Lines 82-96 Link Here
82
82
83
    [% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
83
    [% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
84
    <div id="checkin_search" class="residentsearch">
84
    <div id="checkin_search" class="residentsearch">
85
    <p class="tip">Scan a barcode to check in:</p>
86
    <form method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off">
85
    <form method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off">
86
        <label class="tip" for="ret_barcode">Scan a barcode to check in:</label>
87
    <input class="head-searchbox" name="barcode" id="ret_barcode" size="40" accesskey="r" type="text" />
87
    <input class="head-searchbox" name="barcode" id="ret_barcode" size="40" accesskey="r" type="text" />
88
    <input value="Submit" class="submit" type="submit" />
88
    <input value="Submit" class="submit" type="submit" />
89
    </form>
89
    </form>
90
    </div>
90
    </div>
91
        <div id="renew_search" class="residentsearch">
91
        <div id="renew_search" class="residentsearch">
92
        <p class="tip">Scan a barcode to renew:</p>
93
            <form method="post" action="/cgi-bin/koha/circ/renew.pl" autocomplete="off">
92
            <form method="post" action="/cgi-bin/koha/circ/renew.pl" autocomplete="off">
93
                <label class="tip" for="ren_barcode">Scan a barcode to renew:</label>
94
                <input class="head-searchbox" name="barcode" id="ren_barcode" size="40" type="text" />
94
                <input class="head-searchbox" name="barcode" id="ren_barcode" size="40" type="text" />
95
                <input value="Submit" class="submit" type="submit" />
95
                <input value="Submit" class="submit" type="submit" />
96
            </form>
96
            </form>
Lines 99-107 Link Here
99
99
100
    [% IF ( CAN_user_catalogue ) %]
100
    [% IF ( CAN_user_catalogue ) %]
101
    <div id="catalog_search" class="residentsearch">
101
    <div id="catalog_search" class="residentsearch">
102
    <p class="tip">Enter search keywords:</p>
103
        <form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
102
        <form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
104
             [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %][% INCLUDE 'search_indexes.inc' %][% END %]
103
            [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %]
104
                <label class="tip" for="idx">Enter search keywords:</label>
105
                [% INCLUDE 'search_indexes.inc' %]
106
            [% ELSE %]
107
                <label class="tip" for="search-form">Enter search keywords:</label>
108
            [% END %]
105
             <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
109
             <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
106
             <input type="submit" name="op" id="opac-submit" value="Submit" class="submit" />
110
             <input type="submit" name="op" id="opac-submit" value="Submit" class="submit" />
107
        </form>
111
        </form>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patrons-admin-search.inc (-4 / +8 lines)
Lines 3-20 Link Here
3
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName | html %]</a></h1><!-- Begin Patrons Admin Resident Search Box -->
3
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName | html %]</a></h1><!-- Begin Patrons Admin Resident Search Box -->
4
<div id="header_search">
4
<div id="header_search">
5
	<div id="patron_category_search" class="residentsearch">
5
	<div id="patron_category_search" class="residentsearch">
6
    <p class="tip">Search by patron category name:</p>
7
	<form action="[% script_name | html %]" method="post">
6
	<form action="[% script_name | html %]" method="post">
8
        <input class="head-searchbox" type="text" name="description" size="40" value="[% searchfield | html %]" />
7
        <label class="tip" for="description">Search by patron category name:</label>
8
        <input class="head-searchbox" type="text" name="description" id="description" size="40" value="[% searchfield | html %]" />
9
		<input type="submit" class="submit" name="search" value="Search" />
9
		<input type="submit" class="submit" name="search" value="Search" />
10
	</form>	
10
	</form>	
11
	</div>
11
	</div>
12
    [% INCLUDE 'patron-search-box.inc' %]
12
    [% INCLUDE 'patron-search-box.inc' %]
13
	[% IF ( CAN_user_catalogue ) %]
13
	[% IF ( CAN_user_catalogue ) %]
14
    <div id="catalog_search" class="residentsearch">
14
    <div id="catalog_search" class="residentsearch">
15
	<p class="tip">Enter search keywords:</p>
16
		<form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
15
		<form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
17
            [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %][% INCLUDE 'search_indexes.inc' %][% END %]
16
            [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %]
17
                <label class="tip" for="idx">Enter search keywords:</label>
18
                [% INCLUDE 'search_indexes.inc' %]
19
            [% ELSE %]
20
                <label class="tip" for="search-form">Enter search keywords:</label>
21
            [% END %]
18
            <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
22
            <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
19
				<input type="submit" value="Submit"  class="submit" />
23
				<input type="submit" value="Submit"  class="submit" />
20
		</form>
24
		</form>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/prefs-admin-search.inc (-4 / +8 lines)
Lines 3-22 Link Here
3
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName | html %]</a></h1>
3
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName | html %]</a></h1>
4
<div id="header_search">
4
<div id="header_search">
5
	<div id="syspref_search" class="residentsearch">
5
	<div id="syspref_search" class="residentsearch">
6
	<p class="tip">System preference search:</p>
7
	    <form action="/cgi-bin/koha/admin/preferences.pl">
6
	    <form action="/cgi-bin/koha/admin/preferences.pl">
7
            <label class="tip" for="searchfield">System preference search:</label>
8
        <input type="hidden" name="tab" value="[% last_tab | html %]" />
8
        <input type="hidden" name="tab" value="[% last_tab | html %]" />
9
        <input type="hidden" name="op" value="search" />
9
        <input type="hidden" name="op" value="search" />
10
        <input class="head-searchbox" type="text" size="40" name="searchfield" value="">
10
        <input class="head-searchbox" type="text" size="40" name="searchfield" id="searchfield" value="">
11
        <input type="submit" class="submit" value="Search" />
11
        <input type="submit" class="submit" value="Search" />
12
    </form>
12
    </form>
13
	</div>
13
	</div>
14
    [% INCLUDE 'patron-search-box.inc' %]
14
    [% INCLUDE 'patron-search-box.inc' %]
15
	[% IF ( CAN_user_catalogue ) %]
15
	[% IF ( CAN_user_catalogue ) %]
16
    <div id="catalog_search" class="residentsearch">
16
    <div id="catalog_search" class="residentsearch">
17
<p class="tip">Enter search keywords:</p>
18
		<form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
17
		<form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
19
             [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %][% INCLUDE 'search_indexes.inc' %][% END %]
18
            [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %]
19
                <label class="tip" for="idx">Enter search keywords:</label>
20
                [% INCLUDE 'search_indexes.inc' %]
21
            [% ELSE %]
22
                <label class="tip" for="search-form">Enter search keywords:</label>
23
            [% END %]
20
             <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
24
             <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
21
				<input type="submit" value="Submit" class="submit" />
25
				<input type="submit" value="Submit" class="submit" />
22
		</form>
26
		</form>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/search_indexes.inc (-1 / +1 lines)
Lines 1-5 Link Here
1
[% USE Koha %]
1
[% USE Koha %]
2
<select class="advsearch" name="idx">
2
<select class="advsearch" name="idx" id="idx">
3
    [% IF ms_kw %]
3
    [% IF ms_kw %]
4
        <option selected="selected" value="kw">Keyword</option>
4
        <option selected="selected" value="kw">Keyword</option>
5
    [% ELSE %]
5
    [% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/serials-search.inc (-2 / +6 lines)
Lines 21-29 Link Here
21
    [% INCLUDE 'patron-search-box.inc' %]
21
    [% INCLUDE 'patron-search-box.inc' %]
22
    [% IF ( CAN_user_catalogue ) %]
22
    [% IF ( CAN_user_catalogue ) %]
23
      <div id="catalog_search" class="residentsearch">
23
      <div id="catalog_search" class="residentsearch">
24
        <p class="tip">Enter search keywords:</p>
25
        <form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
24
        <form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
26
          [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %][% INCLUDE 'search_indexes.inc' %][% END %]
25
            [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %]
26
                <label class="tip" for="idx">Enter search keywords:</label>
27
                [% INCLUDE 'search_indexes.inc' %]
28
            [% ELSE %]
29
                <label class="tip" for="search-form">Enter search keywords:</label>
30
            [% END %]
27
          <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
31
          <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
28
          <input type="submit" value="Submit"  class="submit" />
32
          <input type="submit" value="Submit"  class="submit" />
29
        </form>
33
        </form>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/suggestions-add-search.inc (-2 / +6 lines)
Lines 17-25 Link Here
17
17
18
	[% IF ( CAN_user_catalogue ) %]
18
	[% IF ( CAN_user_catalogue ) %]
19
    <div id="catalog_search" class="residentsearch">
19
    <div id="catalog_search" class="residentsearch">
20
	<p class="tip">Enter search keywords:</p>
21
		<form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
20
		<form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
22
            [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %][% INCLUDE 'search_indexes.inc' %][% END %]
21
            [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %]
22
                <label class="tip" for="idx">Enter search keywords:</label>
23
                [% INCLUDE 'search_indexes.inc' %]
24
            [% ELSE %]
25
                <label class="tip" for="search-form">Enter search keywords:</label>
26
            [% END %]
23
            <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
27
            <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
24
				<input type="submit" value="Submit"  class="submit" />
28
				<input type="submit" value="Submit"  class="submit" />
25
		</form>
29
		</form>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/z3950-admin-search.inc (-4 / +8 lines)
Lines 3-11 Link Here
3
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName | html %]</a></h1><!-- Begin z3950 Admin Resident Search Box -->
3
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName | html %]</a></h1><!-- Begin z3950 Admin Resident Search Box -->
4
<div id="header_search">
4
<div id="header_search">
5
    <div id="z3950_search" class="residentsearch">
5
    <div id="z3950_search" class="residentsearch">
6
    <p class="tip">Z39.50/SRU server search:</p>
7
	<form action="/cgi-bin/koha/admin/z3950servers.pl" method="post">
6
	<form action="/cgi-bin/koha/admin/z3950servers.pl" method="post">
8
                <input class="head-searchbox" type="text" name="searchfield" size="40" value="[% searchfield | html %]" />
7
        <label class="tip" for="searchfield">Z39.50/SRU server search:</label>
8
                <input class="head-searchbox" type="text" name="searchfield" id="searchfield" size="40" value="[% searchfield | html %]" />
9
                <input type="submit" class="submit" name="search" value="Search" />
9
                <input type="submit" class="submit" name="search" value="Search" />
10
        </form>
10
        </form>
11
	</div>
11
	</div>
Lines 14-22 Link Here
14
14
15
	[% IF ( CAN_user_catalogue ) %]
15
	[% IF ( CAN_user_catalogue ) %]
16
    <div id="catalog_search" class="residentsearch">
16
    <div id="catalog_search" class="residentsearch">
17
	<p class="tip">Enter search keywords:</p>
18
		<form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
17
		<form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
19
            [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %][% INCLUDE 'search_indexes.inc' %][% END %]
18
            [% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %]
19
                <label class="tip" for="idx">Enter search keywords:</label>
20
                [% INCLUDE 'search_indexes.inc' %]
21
            [% ELSE %]
22
                <label class="tip" for="search-form">Enter search keywords:</label>
23
            [% END %]
20
            <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
24
            <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="head-searchbox form-text" />
21
				<input type="submit" value="Submit"  class="submit" />
25
				<input type="submit" value="Submit"  class="submit" />
22
		</form>
26
		</form>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authtypes.tt (-2 / +1 lines)
Lines 88-94 Link Here
88
                    <textarea id="summary" name="summary" cols="55" rows="7">[% authority_type.summary | html %]</textarea>
88
                    <textarea id="summary" name="summary" cols="55" rows="7">[% authority_type.summary | html %]</textarea>
89
                </li>
89
                </li>
90
                <li>
90
                <li>
91
                    <p class="tip">Note: for 'Authority field to copy', enter the authority field that should be copied from the authority record to the bibliographic record. E.g., in MARC21, field 100 in the authority record should be copied to field 100 in the bibliographic record</p>
91
                    <div class="hint">Note: for 'Authority field to copy', enter the authority field that should be copied from the authority record to the bibliographic record. E.g., in MARC21, field 100 in the authority record should be copied to field 100 in the bibliographic record</div>
92
                    <label for="auth_tag_to_report">Authority field to copy: </label>
92
                    <label for="auth_tag_to_report">Authority field to copy: </label>
93
                    <input type="text" id="auth_tag_to_report" name="auth_tag_to_report" size="5" maxlength="3" value="[% authority_type.auth_tag_to_report | html %]" />
93
                    <input type="text" id="auth_tag_to_report" name="auth_tag_to_report" size="5" maxlength="3" value="[% authority_type.auth_tag_to_report | html %]" />
94
                    <input type="hidden" name="op" value="add_validate" />
94
                    <input type="hidden" name="op" value="add_validate" />
95
- 

Return to bug 25954