From: Jeff Davis Date: Wed, 18 Feb 2015 01:13:39 +0000 (-0800) Subject: LP#1423025: Display active date instead of create date in holdings grid X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=refs%2Fheads%2Fuser%2Fjeffdavis%2Flp1418772-lp1423025-combined;p=working%2FEvergreen.git LP#1423025: Display active date instead of create date in holdings grid Signed-off-by: Jeff Davis --- diff --git a/Open-ILS/src/templates/opac/parts/record/copy_table.tt2 b/Open-ILS/src/templates/opac/parts/record/copy_table.tt2 index c06bad6b5d..e66dba40b2 100644 --- a/Open-ILS/src/templates/opac/parts/record/copy_table.tt2 +++ b/Open-ILS/src/templates/opac/parts/record/copy_table.tt2 @@ -42,7 +42,7 @@ END; [% l("Shelving Location") %] [%- IF ctx.is_staff %] [% l("Age Hold Protection") %] - [% l("Create Date") %] + [% l("Active Date") %] [%- END %] [%- IF ctx.is_staff OR serial_holdings %] [% l("Holdable?") %] @@ -142,9 +142,9 @@ END; # FOREACH bib ctx.get_crahp(copy_info.age_protect).name : l('None') | html %] [% - IF copy_info.create_date; + IF copy_info.active_date; date.format( - ctx.parse_datetime(copy_info.create_date), + ctx.parse_datetime(copy_info.active_date), DATE_FORMAT ); ELSE;