Made table cells in holdings white to temporarily solve CSS display
authorTerran McCanna <tmccanna@georgialibraries.org>
Mon, 19 Jan 2015 19:54:50 +0000 (14:54 -0500)
committerChris Sharp <csharp@georgialibraries.org>
Sat, 9 Dec 2017 19:34:05 +0000 (14:34 -0500)
issue in staff client.

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
Conflicts:
Open-ILS/src/templates/opac/parts/record/copy_table.tt2

Open-ILS/src/templates/opac/parts/record/copy_table.tt2

index bb14c9c..c128b57 100644 (file)
@@ -55,7 +55,7 @@ END;
     <tbody class="copy_details_table">
 [%- FOREACH peer IN ctx.foreign_copies;
         FOREACH bib IN peer.foreign_copy_maps; %]
-    <tr class="copy_details_row"><td>
+    <tr class="copy_details_row"><td style="background-color:#fff;">
     [%- bib_lib_name = ctx.get_aou(bib.target_copy.circ_lib).name | html;
         l("[_1] (foreign item)", bib_lib_name); -%]
         <ul><li>
@@ -66,11 +66,13 @@ END;
             </a>
         </li></ul>
     </td>
-    <td>[% copy_info.copy_location | html %]</td>
-    <td>[% bib.target_copy.call_number.label | html %]</td>
-    <td>[% bib.target_copy.barcode | html %]</td>
-    <td>[% bib.target_copy.status.name | html %]</td>
-    <td>[% date.format(ctx.parse_datetime(copy_info.due_date, copy_info.circ_circ_lib),DATE_FORMAT) %]</td>
+    <td style="background-color:#fff;">[% copy_info.copy_location | html %]</td>
+    <td style="background-color:#fff;">[% bib.target_copy.call_number.label | html %]</td>
+    <td style="background-color:#fff;">[% bib.target_copy.barcode | html %]</td>
+    <td style="background-color:#fff;">[% copy_info.copy_status | html %]</td>
+    [%- IF ctx.is_staff %]
+    <td style="background-color:#fff;">[% copy_info.due_date | html %]</td>
+    [%- END %]
 </tr>
    [%- END; # FOREACH peer
 END; # FOREACH bib