Sha256: c63496bda93f2e701559dc6a36fbea9a35ae98c5b83db12e650b7f752ad653bb
Contents?: true
Size: 1.83 KB
Versions: 10
Compression:
Stored size: 1.83 KB
Contents
<div class="panel-body no-padding-bottom panel-default table-responsive"> <div id="variant_prices-table-wrapper"> <table class="table sortable"> <colgroup> <col style="width: 15%"> <col style="width: 30%"> <col style="width: 15%"> <col style="width: 20%"> <col style="width: 20%"> </colgroup> <thead> <tr data-hook="variant_prices_header"> <th><%= Spree.t(:options) %></th> <th><%= Spree.t(:sku) %></th> <th><%= Spree.t(:currency) %></th> <th><%= Spree.t(:price) %></th> <th><%= Spree.t(:compare_at_price) %></th> </tr> </thead> <tbody id="variant-prices" data-hook="variant_prices_body"> <% supported_currencies_for_all_stores.each do |currency| %> <% code = currency.iso_code %> <% @product.variants_including_master.each do |variant| %> <% price = variant.price_in(code) %> <tr id="variant_prices_row" data-hook="variant_prices_row"> <td class="panel"> <%= variant.is_master? ? Spree.t(:master) : variant.options_text.blank? ? Spree.t(:variant) : variant.options_text %> </td> <td class="panel-title"><%= variant.sku %></td> <td><%= label_tag "vp[#{variant.id}][#{code}]", code %></td> <td> <%= text_field_tag "vp[#{variant.id}][#{code}][price]", (price && price.price ? price.display_amount.money : ''), class: 'form-control' %> </td> <td> <%= text_field_tag "vp[#{variant.id}][#{code}][compare_at_price]", (price && price.compare_at_price ? price.display_compare_at_amount.money : ''), class: 'form-control' %> </td> </tr> <% end %> <% end %> </tbody> </table> </div> </div>
Version data entries
10 entries across 10 versions & 1 rubygems