From: Terran McCanna Date: Tue, 5 Jan 2016 22:47:01 +0000 (-0500) Subject: Temporary modifications to My Account > Holds History until more X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e0d7dd285c8c86e4d1d4c19fdd55b6a489eed880;p=evergreen%2Fpines.git Temporary modifications to My Account > Holds History until more permanent fixes are developed. Hid paging because it is broken. See: https://bugs.launchpad.net/evergreen/+bug/1422927 Showing "Canceled" instead of "Active" for canceled holds. See: https://bugs.launchpad.net/evergreen/+bug/1275118 Signed-off-by: Terran McCanna --- diff --git a/Open-ILS/src/templates/opac/myopac/hold_history.tt2 b/Open-ILS/src/templates/opac/myopac/hold_history.tt2 index c2cfdbe72f..75b7447005 100644 --- a/Open-ILS/src/templates/opac/myopac/hold_history.tt2 +++ b/Open-ILS/src/templates/opac/myopac/hold_history.tt2 @@ -22,6 +22,7 @@
[% l("Previously Requested Items") %] + Export List @@ -101,8 +103,11 @@ date.format(ctx.parse_datetime(ahr.thaw_date), DATE_FORMAT); END %] - - [% l(ahr.frozen == 'f' ? 'Active' : 'Suspended') %] + [% IF hold.hold.status != 6; %] + [% l(ahr.frozen == 'f' ? 'Active' : 'Suspended') %] + [% ELSE %] + Canceled + [% END %] [% IF ahr.fulfillment_time;