Owen Leonard
38bc9eb2a8
This patch replaces instances of <p class="tip"> with <label class="tip"> in header search forms where there is not already a label tag corresponding to the first form field. In cases where there is already a label on the first form field the <p> is kept. To test, apply the patch and rebuild the staff client CSS (https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_client) Test the header search forms on the following pages: - Staff interface home page - Acquisitions home - Acquisitions -> Vendor -> Contracts - Acquisitions -> Vendor -> Add to basket -> From a suggestion - Advanced catalog search - Authorities - Administration - Administration -> Funds - Administration -> Desks (UseCirculationDesks must be enabled) - Administration -> Cities and towns - Administration -> Currencies and exchange rates - Administration -> Patron categories - Administration -> Z39.50/SRU servers - Catalog -> Search results - Cataloging - Circulation - Circulation -> Check in - Patrons - Serials - Tools -> Notices and Slips In each case, check that the search form labels work as expected to move focus to the corresponding form field. Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
24 lines
1.3 KiB
HTML
24 lines
1.3 KiB
HTML
[% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
|
|
<div id="circ_search" class="residentsearch">
|
|
<form action="/cgi-bin/koha/circ/circulation.pl" id="patronsearch" method="post">
|
|
<label class="tip" for="findborrower">Enter patron card number or partial name:</label>
|
|
[% IF ( PatronAutoComplete ) %]
|
|
<div class="autocomplete">
|
|
<input autocomplete="off" id="findborrower" name="findborrower" size="40" class="head-searchbox focus" type="text" />
|
|
<input id="autocsubmit" type="submit" class="submit" value="Submit" />
|
|
[% IF ( stickyduedate ) %]
|
|
<input type="hidden" name="duedatespec" value="[% duedatespec | html %]" />
|
|
<input type="hidden" name="stickyduedate" value="[% stickyduedate | html %]" />
|
|
[% END %]
|
|
</div>
|
|
[% ELSE %]
|
|
<input id="findborrower" name="findborrower" size="40" class="head-searchbox focus" type="text" autocomplete="off" />
|
|
[% IF ( stickyduedate ) %]
|
|
<input type="hidden" name="duedatespec" value="[% duedatespec | html %]" />
|
|
<input type="hidden" name="stickyduedate" value="[% stickyduedate | html %]" />
|
|
[% END %]
|
|
<input value="Submit" class="submit" type="submit" />
|
|
[% END %]
|
|
</form>
|
|
</div>
|
|
[% END %]
|