Sha256: 63c67b02f1dfa2819b661d2d9c80aefc1a09569dd5103c25ec406998a6021969

Contents?: true

Size: 1.7 KB

Versions: 4

Compression:

Stored size: 1.7 KB

Contents

<div class="row">
  <div class="col-xs-12">
    <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? %> <%= cycle('odd', 'even')%>">
            <td><%= price.display_country %></td>
            <td><%= price.currency %></td>
            <td class="align-right"><%= 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) %>
                &nbsp;
                <%= link_to_delete(price, :no_text => true) unless price.deleted? %>
              <% end %>
            </td>
          </tr>
        <% end %>
      </table>
    </fieldset>
  </div>
</div>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
solidus_backend-2.1.1 app/views/spree/admin/prices/_master_variant_table.html.erb
solidus_backend-2.1.0 app/views/spree/admin/prices/_master_variant_table.html.erb
solidus_backend-2.1.0.rc1 app/views/spree/admin/prices/_master_variant_table.html.erb
solidus_backend-2.1.0.beta1 app/views/spree/admin/prices/_master_variant_table.html.erb