Koha/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-bib-search.tmpl
Nahuel ANGELINETTI 2091a99e73 (bug #3421) fix the xhtml in serial biblio search
This fix differents errors, and escape in bib search.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
2009-07-20 22:08:17 -04:00

41 lines
1.1 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<title>Koha &rsaquo; Serials</title>
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
</head>
<body>
<div id="doc" class="yui-t7">
<div id="bd">
<h1>Catalog search</h1>
<!-- TMPL_IF name="no_query" -->
<div class="warning">You must enter a term to search on </div>
<!-- /TMPL_IF -->
<form name="f" action="/cgi-bin/koha/serials/subscription-bib-search.pl" method="get">
<input type="hidden" name="op" value="do_search" />
<input type="hidden" name="type" value="intranet" />
<label for="q">Keyword</label>
<input type="text" id="q" name="q" />
<!-- ITEMTYPE LIMITS -->
<p>Limit type to:
<select name="itemtypelimit">
<option value="">All</option>
<!--TMPL_LOOP Name="itemtypeloop"-->
<option value="<!--TMPL_VAR Name="code" -->">
<!--TMPL_VAR ESCAPE="HTML" Name="description" -->
</option>
<!--/TMPL_LOOP-->
</select>
</p>
<!-- /ITEMTYPE LIMITS -->
<input type="submit" value="Search" />
</form>
</div>
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->