From 348d46fdfe47de2bd96aadc41d4af01b2b2b86d0 Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Mon, 14 Apr 2025 16:21:39 +0200 Subject: [PATCH] Bug 39626: Use patron-title.inc in pendingreserves.tt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In "Holds to pull" page, patron column should use patron-title.inc like in other pages (like waiting holds). This allows to use surname first to allow better sorting/finding. Test plan : 1) Place an hold on some record 2) Go to Circulation > Holds to pull 3) Check you see in column "First patron" : surname then firstname Signed-off-by: Emmanuel Bétemps Signed-off-by: Lucas Gass --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt index 966888bec9b..2773fc631da 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt @@ -99,7 +99,7 @@ > [% hold_info.items_count | html %] [% hold_info.patrons_count | html %] - [% patron.firstname | html %] [% patron.surname | html %] + [% INCLUDE 'patron-title.inc' patron=patron invert_name=1 no_title=1 %]

[% INCLUDE 'biblio-title.inc' biblio=biblio link = 1 %]

[% IF ( biblio.author ) %]

by [% biblio.author | html %]

[% END %] -- 2.39.5