Koha/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-bib-search.tt
Owen Leonard d30c6dcb7f
Bug 32085: Consistent classes for primary buttons: Labels
This patch makes changes the button markup in label-creation templates
-- including the barcode image generator -- 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 label-related pages to confirm
that everything looks correct. In most cases there are no visible
changes.

Signed-off-by: David Nind <david@davidnind.com>

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2022-11-04 19:16:18 -03:00

34 lines
1.2 KiB
Text

[% INCLUDE 'doc-head-open.inc' %]<span>Koha</span> &rsaquo; <span>Tools</span> &rsaquo; <span>Labels</span> &rsaquo;: <span>Search</span>[% INCLUDE 'doc-head-close.inc' %]
</head>
<body id="labels_label-bib-search" class="tools labels">
<div id="main-compact">
<h1>Search</h1>
<form name="f" method="post">
<input type="hidden" name="op" value="do_search" />
<input type="hidden" name="type" value="intranet" />
<div class="details">
<h2>Search on</h2>
<p>
<label for="category">Name or ISSN: </label>
[% category | html %]
</p>
<p>
<label for="index">Search value: </label>
<input type="text" name="value" value="[% value | html %]" />
<input type="hidden" name="authtypecode" value="[% category | html %]" />
<input type="hidden" name="marclist" value="" />
<input type="hidden" name="and_or" value="and" />
<input type="hidden" name="excluding" value="" />
<input type="hidden" name="operator" value="contains" />
<input type="hidden" id="index" name="index" value="[% index | html %]" />
</p>
<p>
<input type="submit" class="btn btn-primary" value="Start search" />
</p>
</div>
</form>
</div>
[% INCLUDE 'intranet-bottom.inc' %]