From 00658d07d36fe54b6289abfc7fb6219a59a89830 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 31 Jul 2025 11:06:11 +0000 Subject: [PATCH] Bug 40560: Use WRAPPER for recalls history breadcrumbs The recalls history template doesn't use the standard WRAPPER for displaying breadcrumbs. This patch fixes it. To test, apply the patch and enable recalls if necessary. - Locate a patron and view their details. - In the left-hand sidebar click "Recalls history" - The breadcrumbs on the recalls history page should look correct, with styling consistent with other pages' breadcrumbs menus Sponsored-by: Athens County Public Libraries Signed-off-by: David Flater Signed-off-by: Jonathan Druart --- .../prog/en/modules/members/recallshistory.tt | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/recallshistory.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/recallshistory.tt index 4f3de16351b..c8cdaa3468e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/recallshistory.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/recallshistory.tt @@ -21,7 +21,20 @@ [% INCLUDE 'patron-search-header.inc' %] [% END %] - +[% WRAPPER 'sub-header.inc' %] + [% WRAPPER breadcrumbs %] + [% WRAPPER breadcrumb_item %] + Patrons + [% END %] + [% WRAPPER breadcrumb_item %] + [% INCLUDE 'patron-title.inc' %] + [% END %] + [% WRAPPER breadcrumb_item bc_active= 1 %] + Recalls history + [% END %] + [% END #/ WRAPPER breadcrumbs %] +[% END #/ WRAPPER sub-header.inc %] + [% WRAPPER 'main-container.inc' aside='circ-menu' %] [% INCLUDE 'members-toolbar.inc' %]

Recalls history

-- 2.34.1