@@ -, +, @@ queue - Look at the holds queue page with holds displayed - Toggle HidePatronName system preference and observe the change - Make sure the link works correctly --- .../intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt @@ -3,6 +3,7 @@ [% USE Branches %] [% USE AuthorisedValues %] [% USE ColumnsSettings %] +[% USE Koha %] [% INCLUDE 'doc-head-open.inc' %] Koha › Circulation › Holds queue [% INCLUDE 'doc-head-close.inc' %] @@ -173,12 +174,19 @@ $(document).ready(function() { [% itemsloo.enumchron %] [% IF ( itemsloo.item_level_request ) %] - Only Item: [% itemsloo.barcode %] + Only item: [% itemsloo.barcode %] [% ELSE %] [% itemsloo.barcode %] or any available [% END %] -

[% itemsloo.surname %], [% itemsloo.firstname %] ([% itemsloo.cardnumber %])

[% itemsloo.phone %]

+ + [% IF Koha.Preference('HidePatronName') %] +

[% itemsloo.cardnumber %]

+ [% ELSE %] +

[% itemsloo.surname %], [% itemsloo.firstname %] ([% itemsloo.cardnumber %])

+

[% itemsloo.phone %]

+ [% END %] + [% Branches.GetName( itemsloo.pickbranch ) %] [% itemsloo.reservedate | $KohaDates %] [% itemsloo.notes %] --