From 47ba0783228218646e4306bfecf4fb81fa5771e7 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. --- 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 377ac80fd2..2f9f94ba29 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt @@ -122,9 +122,9 @@ [% FOREACH letter IN letters %] [% IF letter.code == value.selected_lettercode %] - + [% ELSE %] - + [% END %] [% END %] -- 2.30.2