From 32f45e09b0d42d7a1b580c4ace954a9b186e306c Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Fri, 10 Mar 2023 21:56:57 +0000 Subject: [PATCH] Bug 33203: Add letter_code to the letter dropdown text To test: 1. Add a new notice in the Circulation module with a letter code of 'ABC'. Give the new notice a name of 'Overdue notice'. 2. Now to go Overdue notice/status triggers and look at the dropdown, notice 2 choices that both read 'Overdue notice'. 3. Apply patch and try again. 4. The new notice should now read "Overdue notice (ABC)" and should be easy to distinguish from the original. Signed-off-by: Sally Signed-off-by: Aleisha Amohia --- koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt index 18284ba8582..f2d4bd44574 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt @@ -121,9 +121,9 @@ [% FOREACH letter IN letters %] [% IF letter.code == value.selected_lettercode %] - + [% ELSE %] - + [% END %] [% END %] -- 2.30.2