Merge remote branch 'kc/new/enh/bug_5917' into kcmaster
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / serials / subscription-bib-search.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Serials &rsaquo; Catalog search</title>
3 [% INCLUDE 'doc-head-close.inc' %]
4 </head>
5 <body>
6
7 <div id="doc" class="yui-t7">
8    <div id="bd">
9         
10
11 <h1>Catalog search</h1>
12 [% IF ( no_query ) %]
13     <div class="warning">You must enter a term to search on </div>
14 [% END %]
15 <form name="f" action="/cgi-bin/koha/serials/subscription-bib-search.pl" method="get">
16     <input type="hidden" name="op" value="do_search" />
17     <input type="hidden" name="type" value="intranet" />
18         <fieldset class="rows">
19         <ol>
20     <li><label for="q">Keyword: </label>
21     <input type="text" id="q"  name="q" /></li>
22     
23     <!-- ITEMTYPE LIMITS -->
24         <li><label for="itemtypelimit">Limit type to: </label>
25         <select name="itemtypelimit" id="itemtypelimit">
26             <option value="">All</option>
27         [% FOREACH itemtypeloo IN itemtypeloop %]
28             <option value="[% itemtypeloo.code %]">
29                 [% itemtypeloo.description |html %]
30             </option>
31         [% END %]
32         </select>
33         </li>
34     <!-- /ITEMTYPE LIMITS -->
35         </ol>
36 </fieldset>
37 <fieldset class="action"><input type="submit" value="Search" /></fieldset>
38
39
40 </form>
41
42 </div>
43
44 [% INCLUDE 'intranet-bottom.inc' %]