From b9382dd3ac860d533a0686e14adfdae4f2e19f69 Mon Sep 17 00:00:00 2001 From: Andrew Fuerste Henry Date: Fri, 27 Sep 2024 14:08:14 +0000 Subject: [PATCH] Bug 38013: Add classes to messages in returns.tt To test: 1 - enable FineNotifyAtCheckin 2 - enable AllowCheckoutNotes 3 - check out an item to a patron with fines on their account 4 - check out an item and place a checkout note on it 5 - check each item in, confirm each produces a message with the classes alert, alert-info, and alert-warning 6 - apply patch, restart_all 7 - repeat steps 3 and 4 8 - check items in, confirm messages now include issue-note and patron-fines classes Signed-off-by: Brendan Lawlor --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt index 6c132ef2b8..1504c9867f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt @@ -174,7 +174,7 @@ [% IF ( issue.note) %] -
+

Patron note

[% issue.notedate | $KohaDates %]

[% title | html %] [% author | html %]

@@ -184,7 +184,7 @@ [% IF ( fines ) %] -
+

Patron has outstanding fines of [% fines | html %].

Make payment.

-- 2.39.5