Koha/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-bib-search.tt
Owen Leonard fc08868976
Bug 32094: Consistent classes for primary buttons: Serials
This patch makes changes the button markup in serials templates so that
all submit buttons and any buttons that should should be styled as
primary buttons have the Bootstrap class "btn btn-primary."

To test, apply the patch and view serials pages to confirm that
everything looks correct. In most cases there are no visible
changes.

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2022-11-14 09:30:49 -03:00

53 lines
1.8 KiB
Text

[% INCLUDE 'doc-head-open.inc' %]
<title>Catalog search &rsaquo; Serials &rsaquo; Koha</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" autofocus="autofocus" />
</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 | html %]">
[% 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 | html %]">
[% ccodeloo.description | html %]
</option>
[%- END %]
</select>
</li>
[%- END %]
</ol>
</fieldset>
<fieldset class="action">
<input type="submit" class="btn btn-primary" value="Search" />
</fieldset>
</form>
[% INCLUDE 'intranet-bottom.inc' popup_window=1 %]