_products_children.html.erb 1019 B

12345678910111213141516171819202122232425262728293031
  1. <table class="table table-striped table-bordered table-hover tableadvanced">
  2. <thead>
  3. <tr>
  4. <th>SKU</th>
  5. <% @attrs.each do |attr| %>
  6. <th><%= t "dictionary." + attr %></th>
  7. <% end %>
  8. <th>Status</th>
  9. </tr>
  10. </thead>
  11. <tbody>
  12. <% @product.children.each_with_index do |product, key| %>
  13. <tr>
  14. <td><%= product.sku %></td>
  15. <% @attrs.each_with_index do |attr, index| %>
  16. <th><%= product.attributes_to_hash[attr] %></th>
  17. <% end %>
  18. <td>
  19. <% if product.active? %>
  20. <i class='fa fa-check fa-2 font-green'></i>
  21. <% else %>
  22. <i class='fa fa-times fa-2 font-red'></i>
  23. <% end %>
  24. </td>
  25. </tr>
  26. <% end %>
  27. </tbody>
  28. </table>