From 94a209e30299b5a2240194d12c10368c29d3eb99 Mon Sep 17 00:00:00 2001 From: Rachel A-M Date: Thu, 17 Jul 2025 23:11:48 +0000 Subject: [PATCH] Bug 36518: Add IDs to sections (fieldsets) on the item search form This patch adds IDs to the fieldsets on the staff interface search form (Search > Item search), to make CSS customization easier. Test plan: 1. Go to Search > Item search in the staff interface. 2. Right click: Inspect(Q) 3. Use ithe Search HTML bar to search for fieldset IDs: - "librarylocation" - "access_and_condition" - "barcodesearch" - "callnumber_checkouts" Signed-off-by: David Nind --- .../intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt index a050fdf52e7..7add771b952 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt @@ -232,14 +232,14 @@ Go to advanced search -
+
[% INCLUDE form_field_select name="homebranch" options = branches %] [% INCLUDE form_field_select name="holdingbranch" options = branches %] [% IF locations.size %] [% INCLUDE form_field_select name="location" options = locations %] [% END %]
-
+
[% INCLUDE form_field_select name="itype" options = itemtypes style="min-width:300px" %] [% IF ccodes.size %] [% INCLUDE form_field_select name="ccode" options = ccodes %] @@ -278,7 +278,7 @@
-
+
[% IF !query.param('f') %] [% INCLUDE form_field_select_text %] [% ELSE %] @@ -290,7 +290,7 @@

% matches any number of characters

_ matches only a single character

-
+
-- 2.39.5