Koha/koha-tmpl/intranet-tmpl/prog/en/includes/printers-admin-search.inc
Jesse Weaver c6e2bcf67d Fix for bug 2155: duplicate checkin box on returns screen
This changes some css and markup to make the return box at the top not show when one is on the checkin screen. It also moves the markup for the autocompleting search box to its own file.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
2008-08-18 07:15:43 -05:00

27 lines
1.5 KiB
HTML

<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl"><!-- TMPL_VAR NAME="LibraryName" --></a></h1><!-- Begin Printers Resident Search Box -->
<div id="header_search">
<div id="printer_search" class="residentsearch">
<p class="tip">Printer Search:</p>
<form action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
<input type="text" size="40" name="description" value="<!-- TMPL_VAR NAME="searchfield" -->" />
<input type="submit" name="submit" value="Search" />
</form>
</div>
<!-- TMPL_INCLUDE NAME="patron-search-box.inc" -->
<!-- TMPL_IF NAME="CAN_user_catalogue" -->
<div id="catalog_search" class="residentsearch" style="display:none;">
<p class="tip">Enter search keywords:</p>
<form action="/cgi-bin/koha/catalogue/search.pl" method="get" id="cat-search-block">
<input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="form-text" />
<input type="submit" value="Submit" class="submit" />
</form>
</div>
<!-- /TMPL_IF -->
<ul>
<li><a href="/cgi-bin/koha/admin/printers.pl#printer_search">Search Printers</a></li>
<!-- TMPL_IF NAME="CAN_user_circulate" --><li><a href="/cgi-bin/koha/circ/circulation.pl#circ_search">Check Out</a></li><!-- /TMPL_IF -->
<!-- TMPL_IF NAME="CAN_user_catalogue" --><li><a href="/cgi-bin/koha/catalogue/search.pl#catalog_search">Search the Catalog</a></li><!-- /TMPL_IF -->
</ul>
</div>
<!-- End Printers Resident Search Box -->