Sha256: 7a34178e97bf1032583dc2bc601d8b681e63b643e43eaeccd3c54fdf0b57d407
Contents?: true
Size: 1.59 KB
Versions: 16
Compression:
Stored size: 1.59 KB
Contents
<%= paginate variants, theme: "solidus_admin" %> <table class="index sortable" data-sortable-link="<%= update_positions_admin_product_variants_path(@product) %>"> <colgroup> <col style="width: 5%" /> <col style="width: 35%" /> <col style="width: 20%" /> <col style="width: 25%" /> <col style="width: 15%" /> </colgroup> <thead data-hook="variants_header"> <tr> <th></th> <th><%= t('spree.options') %></th> <th><%= Spree::Variant.human_attribute_name(:price) %></th> <th><%= Spree::Variant.human_attribute_name(:sku) %></th> <th class="actions"></th> </tr> </thead> <tbody> <% variants.each do |variant| %> <tr id="<%= spree_dom_id variant %>" data-hook="variants_row" class="<%= "deleted" if variant.deleted? %>"> <td> <% if can? :update_positions, Spree::Variant %> <span class="handle"></span> <% end %> </td> <td><%= variant.options_text %></td> <td><%= variant.display_price&.to_html %></td> <td><%= variant.sku %></td> <td class="actions"> <% if can?(:update, variant) %> <%= link_to_edit(variant, no_text: true) unless variant.deleted? %> <% end %> <% if can?(:destroy, variant) %> <%= link_to_delete(variant, no_text: true) unless variant.deleted? %> <% end %> </td> </tr> <% end %> </tbody> </table> <% if variants.empty? %> <div class="alert alert-warning"> <%= t('.no_variants_found', term: params[:variant_search_term]) %> </div> <% end %> <%= paginate variants, theme: "solidus_admin" %>
Version data entries
16 entries across 16 versions & 1 rubygems