Koha/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/auth_finder.tt
Aleisha Amohia 241eaa1967
Bug 31132: (follow-up) Reset dropdown values and style button
This follow-up patch resets the dropdown values of the form alongside
the text inputs. It styles the button to look like a link so it doesn't
distract the user and get 'accidentally' clicked when attempting to
submit.

Test that the button looks and behaves as expected after submitting a
search.

Signed-off-by: nicolas <nicolas@inlibro.com>
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2023-06-23 11:00:59 -03:00

34 lines
752 B
Text

[% USE raw %]
[% USE Asset %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Cataloging authority plugin &rsaquo; Koha</title>
[% INCLUDE 'doc-head-close.inc' %]
<style>
#clear-form {
border:0;
background:none;
color:#004d99;
padding-left:1em;
}
#clear-form:hover {
color:#538200;
}
</style>
</head>
<body id="auth_auth_finder" class="auth">
<div class="container-fluid">
<h1>Authority search</h1>
[% INCLUDE 'auth-finder-search.inc' %]
[% MACRO jsinclude BLOCK %]
<script>
var index = "[% index | html %]";
var authtypecode = "[% authtypecode | html %]";
</script>
[% Asset.js("js/auth-finder-search.js") | $raw %]
[% END %]
[% INCLUDE 'intranet-bottom.inc' popup_window = 1 %]