Bug 35149: Add Option to ignore submit of checkout field when empty
[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     [% INCLUDE 'messages.inc' %]
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="brief">
18     <ol>
19         <li>
20             <label for="q">Keyword: </label>
21             <input type="text" id="q" name="q" autofocus="autofocus" />
22         </li>
23         <li>
24             <label for="itemtypelimit">Limit item type to: </label>
25             <select name="itemtypelimit" id="itemtypelimit">
26                 <option value="">All</option>
27                 [%- FOREACH itemtypeloo IN itemtypeloop %]
28                 <option value="[% itemtypeloo.code | html %]">
29                     [% itemtypeloo.description | html %]
30                 </option>
31                 [%- END %]
32             </select>
33         </li>
34         [%- IF ccodeloop %]
35         <li>
36             <label for="ccodelimit">Limit collection code to: </label>
37             <select name="ccodelimit" id="ccodelimit">
38                 <option value="">All</option>
39                 [%- FOREACH ccodeloo IN ccodeloop %]
40                 <option value="[% ccodeloo.code | html %]">
41                     [% ccodeloo.description | html %]
42                 </option>
43                 [%- END %]
44             </select>
45         </li>
46         [%- END %]
47     </ol>
48     </fieldset>
49     <nav class="navbar navbar-default navbar-fixed-bottom">
50         <div class="container-fluid">
51             <fieldset class="action">
52                 <input type="submit" class="btn btn-primary" value="Search" />
53                 <button type="button" class="btn btn-default close_window">Close window</button>
54             </fieldset>
55         </div>
56     </nav>
57 </form>
58
59 [% INCLUDE 'intranet-bottom.inc' popup_window=1 %]