Bug 9850: Fix patron routing lists link
[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 id="ser_subscription-bib-search" class="ser">
6
7 <div id="doc" class="yui-t7">
8    <div id="bd">
9
10 <h1>Catalog search</h1>
11 [% IF ( no_query ) %]
12     <div class="warning">You must enter a term to search on </div>
13 [% END %]
14 <form name="f" action="/cgi-bin/koha/serials/subscription-bib-search.pl" method="get">
15     <input type="hidden" name="op" value="do_search" />
16     <input type="hidden" name="type" value="intranet" />
17         <fieldset class="rows">
18         <ol>
19     <li><label for="q">Keyword: </label>
20     <input type="text" id="q"  name="q" /></li>
21     
22     <!-- ITEMTYPE LIMITS -->
23         <li><label for="itemtypelimit">Limit type to: </label>
24         <select name="itemtypelimit" id="itemtypelimit">
25             <option value="">All</option>
26         [% FOREACH itemtypeloo IN itemtypeloop %]
27             <option value="[% itemtypeloo.code %]">
28                 [% itemtypeloo.description |html %]
29             </option>
30         [% END %]
31         </select>
32         </li>
33     <!-- /ITEMTYPE LIMITS -->
34         </ol>
35 </fieldset>
36 <fieldset class="action"><input type="submit" value="Search" /></fieldset>
37
38
39 </form>
40
41 </div>
42
43 [% INCLUDE 'intranet-bottom.inc' %]