Sha256: 7cc6f883d2458389305eabe20303f6d6b8ee826f21604d57de075d2211b10d89
Contents?: true
Size: 881 Bytes
Versions: 57
Compression:
Stored size: 881 Bytes
Contents
<%= render :partial => 'spree/shared/error_messages', :locals => { :target => @level } %> <%= form_tag do %> <br /><br /> <h1><%= Spree.t(:inventory_adjustment) %></h1> <table class="basic-table"> <thead data-hook="inventory_header"> <tr> <th><%= Spree.t(:sku) %></th> <th><%= Spree.t(:product) %></th> <th><%= Spree.t(:options) %></th> <th><%= Spree.t(:adjustment) %></th> </tr> </thead> <tbody> <tr data-hook="inventory_row"> <td><%= @variant.sku %></td> <td><%= @variant.product.name %></td> <td><%= variant_options @variant %></td> <td> <%= text_field :level, :adjustment, :class => 'quantity' %> </td> </tr> </tbody> </table> <%= submit_tag Spree.t('actions.update') %> <%= Spree.t(:or) %> <%= link_to Spree.t('actions.cancel'), :controller => 'overview', :action => :index %> <% end %>
Version data entries
57 entries across 57 versions & 1 rubygems