| 12345678910111213141516171819202122232425262728293031 |
- <table class="table table-striped table-bordered table-hover tableadvanced">
- <thead>
- <tr>
- <th>SKU</th>
- <% @attrs.each do |attr| %>
- <th><%= t "dictionary." + attr %></th>
- <% end %>
- <th>Status</th>
-
- </tr>
- </thead>
- <tbody>
- <% @product.children.each_with_index do |product, key| %>
- <tr>
- <td><%= product.sku %></td>
-
- <% @attrs.each_with_index do |attr, index| %>
- <th><%= product.attributes_to_hash[attr] %></th>
- <% end %>
- <td>
- <% if product.active? %>
- <i class='fa fa-check fa-2 font-green'></i>
- <% else %>
- <i class='fa fa-times fa-2 font-red'></i>
- <% end %>
- </td>
-
- </tr>
- <% end %>
- </tbody>
- </table>
|