LP#1284864 show all formats in record details page
authorBill Erickson <berick@esilibrary.com>
Tue, 25 Feb 2014 18:59:34 +0000 (13:59 -0500)
committerMike Rylander <mrylander@gmail.com>
Mon, 10 Mar 2014 16:29:51 +0000 (12:29 -0400)
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 <berick@esilibrary.com>
Signed-off-by: Mike Rylander <mrylander@gmail.com>
Open-ILS/src/templates/opac/parts/record/summary.tt2

index cc23978..4a58bec 100644 (file)
     </div>
     <div id="format_actions">
         [%- IF attrs.format_label %]
-        <div id="rdetail_format_label">
-            <img alt="[% attrs.format_label %]" title="[% attrs.format_label | html %]" src="[% attrs.format_icon %]" /> [%- attrs.format_label -%]
-        </div>
+          [% FOR format IN attrs.all_formats %]
+              <img title="[% format.label | html %]" 
+                  alt="[% format.label | html %]" 
+                  src="[% format.icon %]" /> 
+              [% format.label | html %]
+          [% END %]
         [%- END %]
         <div id="rdetail_actions_div">
             [%- search_ou = ctx.search_ou;