Sha256: bf4e53b583e7a28c216d6704cc9c0f924aab11c7fa2249e06cf5c25c492864b4
Contents?: true
Size: 1.56 KB
Versions: 5
Compression:
Stored size: 1.56 KB
Contents
<%= paginate master_prices, theme: "solidus_admin" %> <fieldset class="no-border-bottom <%= "no-border-top" if !variants %>"> <% if variants %> <legend align="center"><%= I18n.t(:master_variant, scope: :spree) %> <%= admin_hint I18n.t(:master_variant, scope: :spree), I18n.t(:master_variant, scope: [:spree, :hints, "spree/price"]) %></legend> <% end %> <table class="index master_prices"> <colgroup> <col style="width: 30%"> <col style="width: 30%"> <col style="width: 20%"> <col style="width: 20%"> </colgroup> <thead data-hook="master_prices_header"> <tr> <th><%= Spree::Price.human_attribute_name(:country) %></th> <th><%= Spree::Price.human_attribute_name(:currency) %></th> <th><%= Spree::Price.human_attribute_name(:amount) %></th> <th class="actions"></th> </tr> </thead> <% master_prices.each do |price| %> <tr id="<%= spree_dom_id price %>" data-hook="prices_row" class="<%= "deleted" if price.deleted? %>"> <td><%= price.display_country %></td> <td><%= price.currency %></td> <td><%= price.money.to_html %></td> <td class="actions"> <% if can?(:update, price) %> <%= link_to_edit(price, no_text: true) unless price.deleted? %> <% end %> <% if can?(:destroy, price) %> <%= link_to_delete(price, no_text: true) unless price.deleted? %> <% end %> </td> </tr> <% end %> </table> </fieldset> <%= paginate master_prices, theme: "solidus_admin" %>
Version data entries
5 entries across 5 versions & 1 rubygems