@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt @@ -108,12 +108,14 @@ [% hold.itemtype %] - [% IF hold.found == 'W' %] + [% IF hold.found == 'F' %] + Fulfilled + [% ELSIF hold.cancellationdate %] + Cancelled + [% ELSIF hold.found == 'W' %] Waiting [% ELSIF hold.found == 'T' %] In transit - [% ELSIF hold.cancellationdate %] - Cancelled [% ELSE %] In queue [% END %] --