Nick Clemens
99acd38edb
To test: 1 - Apply patch and update dabase 2 - Check that Search the Catalog links throughout the staff interface have not changed 3 - Set "IntranetCatalogSearchPulldown" to 'Show' 4 - Verify that 'Search the catalog' links through staff client now have a dropdwon to select search index I think viewing one file each that includes updated header should be sufficient, but please check as many as you can: cgi-bin/koha/admin/aqbudgetperiods.pl cgi-bin/koha/admin/admin-home.pl cgi-bin/koha/cataloguing/addbooks.pl cgi-bin/koha/circ/returns.pl cgi-bin/koha/circ/circulation-home.pl cgi-bin/koha/admin/cities.pl cgi-bin/koha/admin/aqcontract.pl cgi-bin/koha/admin/currency.pl cgi-bin/koha/mainpage.pl cgi-bin/koha/tools/letter.pl cgi-bin/koha/members/members-home.pl cgi-bin/koha/admin/categories.pl cgi-bin/koha/admin/preferences.pl cgi-bin/koha/admin/printers.pl cgi-bin/koha/serials/serials-home.pl cgi-bin/koha/acqui/newordersuggestion.pl cgi-bin/koha/admin/z3950servers.pl Sponsored by: Northeast Kansas Library System (http://nekls.org/) Signed-off-by: Heather Braum <hbraum@nekls.org> Signed-off-by: Barton Chittenden <barton@bywatersolutions.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
35 lines
2 KiB
HTML
35 lines
2 KiB
HTML
[% USE Koha %]
|
|
<div class="gradient">
|
|
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Suggestions Resident Search Box -->
|
|
<div id="header_search">
|
|
<div id="suggestions_search" class="residentsearch">
|
|
<p class="tip">Suggestions search:</p>
|
|
<form action="/cgi-bin/koha/acqui/newordersuggestion.pl" method="get">
|
|
<input type="hidden" name="booksellerid" value="[% booksellerid %]" />
|
|
<label for="searchtitle">Title:</label> <input type="text" id="searchtitle" name="title" size="10" value="[% title %]" />
|
|
<label for="searchauthor">Author:</label> <input type="text" id="searchauthor" name="author" size="10" value="[% author %]" />
|
|
<label for="searchpublishercode">Publisher:</label> <input type="text" id="searchpublishercode" name="publishercode" size="10" value="[% publishercode %]" />
|
|
<input type="submit" class="submit" value="Search" />
|
|
</form>
|
|
</div>
|
|
|
|
[% INCLUDE 'patron-search-box.inc' %]
|
|
|
|
[% IF ( CAN_user_catalogue ) %]
|
|
<div id="catalog_search" class="residentsearch">
|
|
<p class="tip">Enter search keywords:</p>
|
|
<form action="/cgi-bin/koha/catalogue/search.pl" method="get" id="cat-search-block">
|
|
[% IF ( Koha.Preference('IntranetCatalogSearchPulldown') ) %][% INCLUDE 'search_indexes.inc' %][% END %]
|
|
<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" />
|
|
<input type="submit" value="Submit" class="submit" />
|
|
</form>
|
|
</div>
|
|
[% END %]
|
|
<ul>
|
|
<li><a href="#suggestions_search">Search suggestions</a></li>
|
|
[% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]<li><a class="keep_text" href="#circ_search">Check out</a></li>[% END %]
|
|
[% IF ( CAN_user_catalogue ) %]<li><a class="keep_text" href="#catalog_search">Search the catalog</a></li>[% END %]
|
|
</ul>
|
|
</div>
|
|
</div><!-- /gradient -->
|
|
<!-- End Suggestions Resident Search Box -->
|