Bug 14790 [QA Followup] - Don't show links unless OPACBaseURL is set
[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="brief">
18     <ol>
19         <li>
20             <label for="q">Keyword: </label>
21             <input type="text" id="q"  name="q" />
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 %]">
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 %]">
41                     [% ccodeloo.description |html %]
42                 </option>
43                 [%- END %]
44             </select>
45         </li>
46         [%- END %]
47     </ol>
48     </fieldset>
49     <fieldset class="action">
50         <input type="submit" value="Search" />
51     </fieldset>
52 </form>
53
54 </div>
55
56 [% INCLUDE 'intranet-bottom.inc' %]