From: Bill Erickson Date: Tue, 25 Feb 2014 18:59:34 +0000 (-0500) Subject: LP#1284864 show all formats in record details page X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=17287cf79206e1d6a61fd6ef796a442410cab722;p=evergreen%2Fmasslnc.git LP#1284864 show all formats in record details page For records which have multiple formats (e.g. DVD and BLU-RAY), show all formats in the details page, similar to the search results pages. Signed-off-by: Bill Erickson Signed-off-by: Mike Rylander --- diff --git a/Open-ILS/src/templates/opac/parts/record/summary.tt2 b/Open-ILS/src/templates/opac/parts/record/summary.tt2 index cc2397855b..4a58becf8e 100644 --- a/Open-ILS/src/templates/opac/parts/record/summary.tt2 +++ b/Open-ILS/src/templates/opac/parts/record/summary.tt2 @@ -32,9 +32,12 @@
[%- IF attrs.format_label %] -
- [% attrs.format_label %] [%- attrs.format_label -%] -
+ [% FOR format IN attrs.all_formats %] + [% format.label | html %] + [% format.label | html %] + [% END %] [%- END %]
[%- search_ou = ctx.search_ou;