c6e2bcf67d
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>
21 lines
989 B
HTML
21 lines
989 B
HTML
|
|
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl"><!-- TMPL_VAR NAME="LibraryName" --></a></h1><!-- Begin Checkin Resident Search Box -->
|
|
<div id="header_search">
|
|
<!-- 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" />
|
|
<input type="submit" class="submit" value="Submit"/>
|
|
</form>
|
|
</div>
|
|
<!-- /TMPL_IF -->
|
|
<ul>
|
|
<!-- 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 Checkin Resident Search Box -->
|