Koha/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-bib-search.tt
Owen Leonard b86a9ee984 Bug 20037: Switch single-column templates to Bootstrap grid: Serials
This patch updates several single-column Serials module templates to
use the Bootstrap grid. In addition to grid changes, some templates have
been modified to include the footer with the correct popup parameter.

- serials\acqui-search.tt - Go to Serials -> New subscription. Click
  "Search for a vendor."

- serials\acqui-search-result.tt - Vendor search results

- serials\result.tt - Click "Search for record."

- serials\subscription-bib-search.tt - Catalog search results.

Each of these pages should look correct.

Signed-off-by: Claire Gravely <claire.gravely@bsz-bw.de>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2018-02-18 16:48:48 -03:00

53 lines
No EOL
1.8 KiB
Text

[% INCLUDE 'doc-head-open.inc' %]
<title>Koha &rsaquo; Serials &rsaquo; Catalog search</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>
<body id="ser_subscription-bib-search" class="ser">
<div class="main container-fluid">
<h1>Catalog search</h1>
[% IF ( no_query ) %]
<div class="warning">You must enter a term to search on </div>
[% END %]
<form name="f" action="/cgi-bin/koha/serials/subscription-bib-search.pl" method="get">
<input type="hidden" name="op" value="do_search" />
<input type="hidden" name="type" value="intranet" />
<fieldset class="brief">
<ol>
<li>
<label for="q">Keyword: </label>
<input type="text" id="q" name="q" />
</li>
<li>
<label for="itemtypelimit">Limit item type to: </label>
<select name="itemtypelimit" id="itemtypelimit">
<option value="">All</option>
[%- FOREACH itemtypeloo IN itemtypeloop %]
<option value="[% itemtypeloo.code %]">
[% itemtypeloo.description |html %]
</option>
[%- END %]
</select>
</li>
[%- IF ccodeloop %]
<li>
<label for="ccodelimit">Limit collection code to: </label>
<select name="ccodelimit" id="ccodelimit">
<option value="">All</option>
[%- FOREACH ccodeloo IN ccodeloop %]
<option value="[% ccodeloo.code %]">
[% ccodeloo.description |html %]
</option>
[%- END %]
</select>
</li>
[%- END %]
</ol>
</fieldset>
<fieldset class="action">
<input type="submit" value="Search" />
</fieldset>
</form>
[% INCLUDE 'intranet-bottom.inc' popup_window=1 %]