app/views/spree/admin/prices/_table.html.erb in solidus_backend-2.0.3 vs app/views/spree/admin/prices/_table.html.erb in solidus_backend-2.1.0.beta1
- old
+ new
@@ -1,35 +1,37 @@
-<%= paginate prices, theme: "solidus_admin" %>
+<%= paginate variant_prices, theme: "solidus_admin" %>
-<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>
+<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) %>
+
+ <%= link_to_delete(price, :no_text => true) unless price.deleted? %>
+ <% end %>
+ </td>
+ </tr>
+ <% end %>
+ </tbody>
+ </table>
+</fieldset>
- <tbody>
- <% 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><%= 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) %>
-
- <%= link_to_delete(price, :no_text => true) unless price.deleted? %>
- <% end %>
- </td>
- </tr>
- <% end %>
- </tbody>
-</table>
-
-<%= paginate prices, theme: "solidus_admin" %>
+<%= paginate variant_prices, theme: "solidus_admin" %>