From eaeac3594fc2ea7a309a0dd557eed1508fde0a33 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 21 Nov 2024 12:50:42 +0000 Subject: [PATCH] Bug 38502: Use Bootstrap alert info class for messages on table settings page This patch updates the table settings template to add style to informational messages. To test, apply the patch and go to Administration -> Table settings. - Go to Catalog -> detail -> holdings_table. Above the table's settings you should see a message, "Please not that if a field..." It should have the standard Bootstrap "info" style. - Go to Cataloging -> additem. You should see a similarly styled message, "Changes made below..." Sponsored-by: Athens County Public Libraries Signed-off-by: David Nind --- .../intranet-tmpl/prog/en/modules/admin/columns_settings.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/columns_settings.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/columns_settings.tt index d0f849bd89..f9d5e89ba5 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/columns_settings.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/columns_settings.tt @@ -35,9 +35,9 @@
[% IF pagename == 'additem' AND tablename == 'itemst' %] -
Changes made below will only apply to item subfields that are mapped to the 'items' table. Go to Koha to MARC mapping
+
Changes made below will only apply to item subfields that are mapped to the 'items' table. Go to Koha to MARC mapping
[% ELSIF pagename == 'detail' AND ( tablename == 'holdings_table' || tablename == 'otherholdings_table' ) %] -
Please note that if a field is not used on the first page of items in the holdings table, it will be automatically hidden from display and can be made visible on demand. You can still use the column configuration to permanently hide columns from the holdings table.
+
Please note that if a field is not used on the first page of items in the holdings table, it will be automatically hidden from display and can be made visible on demand. You can still use the column configuration to permanently hide columns from the holdings table.
[% END %]
-- 2.39.5