@@ -, +, @@ --- .../intranet-tmpl/prog/en/modules/members/holdshistory.tt | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt @@ -4,6 +4,7 @@ [% USE AuthorisedValues %] [% USE Branches %] [% USE ColumnsSettings %] +[% USE ItemTypes %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] Holds history for [% INCLUDE 'patron-title.inc' no_html = 1 %] @@ -43,7 +44,7 @@ Expiration date Waiting date Cancellation date - Item type + Requested item type Status @@ -74,7 +75,13 @@ [% END %] - [% hold.itemtype %] + + [% IF hold.itemtype %] + [% ItemTypes.GetDescription( hold.itemtype ) %] + [% ELSE %] + Any item type + [% END %] + [% IF hold.found == 'F' %] Fulfilled --