From bc68c23759e31c4bb8a13c8af0160942ccef4b6c 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 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 --- 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 966888bec9..2773fc631d 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.43.0