From feed9fe5832b61461061c4c91983b2f834f5aae6 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 17 Feb 2022 16:28:18 +0100 Subject: [PATCH] Bug 30122: Display note fields in authority result list The note fields are displayed for UNIMARC only. Test plan: Add some note fields to an authority record, search for it and confirm that the notes are now display in the authority result list Sponsored-by: Orex Digital --- .../prog/en/includes/authorities-search-results.inc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc index 3e0c4904f15..011409fd72f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc @@ -104,6 +104,14 @@ [% END %] [% ELSE %] + [% IF summary.notes %] +
+ [% FOREACH note IN summary.notes %] + [% note.note | html %] + [% END %] +
+ [% END %] + [% IF ( summary.seefrom.size >= 1 ) %]
used for/see from: -- 2.25.1