Sha256: 22b7eb8b4afb90c848b4996ee4b01d1fbba3395603ea3215b0babe08f353fee3

Contents?: true

Size: 1.42 KB

Versions: 11

Compression:

Stored size: 1.42 KB

Contents

<%= paginate variant_prices, theme: "solidus_admin" %>

<fieldset class="no-border-bottom">
  <legend align="center"><%= I18n.t(:variant_pricing, scope: :spree) %></legend>
  <table class="index prices">
    <thead data-hook="prices_header">
      <tr>
        <th><%= Spree::Variant.model_name.human %> </th>
        <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>
    <tbody>
      <% variant_prices.each do |price| %>
        <tr id="<%= spree_dom_id price %>" data-hook="prices_row" class="<%= "deleted" if price.deleted? %> <%= cycle('odd', 'even')%>">
          <td><%= price.variant.descriptive_name %></td>
          <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 %>
    </tbody>
  </table>
</fieldset>

<%= paginate variant_prices, theme: "solidus_admin" %>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
solidus_backend-2.3.1 app/views/spree/admin/prices/_table.html.erb
solidus_backend-2.2.2 app/views/spree/admin/prices/_table.html.erb
solidus_backend-2.3.0 app/views/spree/admin/prices/_table.html.erb
solidus_backend-2.3.0.rc3 app/views/spree/admin/prices/_table.html.erb
solidus_backend-2.3.0.rc2 app/views/spree/admin/prices/_table.html.erb
solidus_backend-2.3.0.rc1 app/views/spree/admin/prices/_table.html.erb
solidus_backend-2.3.0.beta1 app/views/spree/admin/prices/_table.html.erb
solidus_backend-2.2.1 app/views/spree/admin/prices/_table.html.erb
solidus_backend-2.2.0 app/views/spree/admin/prices/_table.html.erb
solidus_backend-2.2.0.rc1 app/views/spree/admin/prices/_table.html.erb
solidus_backend-2.2.0.beta1 app/views/spree/admin/prices/_table.html.erb