Bug 26703: serials folder
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / serials / subscription-bib-search.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Catalog search &rsaquo; Serials &rsaquo; Koha</title>
3 [% INCLUDE 'doc-head-close.inc' %]
4 </head>
5 <body id="ser_subscription-bib-search" class="ser">
6
7 <div class="main container-fluid">
8
9 <h1>Catalog search</h1>
10 [% IF ( no_query ) %]
11     <div class="warning">You must enter a term to search on </div>
12 [% END %]
13 <form name="f" action="/cgi-bin/koha/serials/subscription-bib-search.pl" method="get">
14     <input type="hidden" name="op" value="do_search" />
15     <input type="hidden" name="type" value="intranet" />
16     <fieldset class="brief">
17     <ol>
18         <li>
19             <label for="q">Keyword: </label>
20             <input type="text" id="q"  name="q" />
21         </li>
22         <li>
23             <label for="itemtypelimit">Limit item type to: </label>
24             <select name="itemtypelimit" id="itemtypelimit">
25                 <option value="">All</option>
26                 [%- FOREACH itemtypeloo IN itemtypeloop %]
27                 <option value="[% itemtypeloo.code | html %]">
28                     [% itemtypeloo.description | html %]
29                 </option>
30                 [%- END %]
31             </select>
32         </li>
33         [%- IF ccodeloop %]
34         <li>
35             <label for="ccodelimit">Limit collection code to: </label>
36             <select name="ccodelimit" id="ccodelimit">
37                 <option value="">All</option>
38                 [%- FOREACH ccodeloo IN ccodeloop %]
39                 <option value="[% ccodeloo.code | html %]">
40                     [% ccodeloo.description | html %]
41                 </option>
42                 [%- END %]
43             </select>
44         </li>
45         [%- END %]
46     </ol>
47     </fieldset>
48     <fieldset class="action">
49         <input type="submit" value="Search" />
50     </fieldset>
51 </form>
52
53 [% INCLUDE 'intranet-bottom.inc' popup_window=1 %]