Sha256: 9d8d828c989abdeaaa4a3abbed9ad75b7706d003db6687babd4585d1531713e9
Contents?: true
Size: 860 Bytes
Versions: 8
Compression:
Stored size: 860 Bytes
Contents
<%= render 'shared/error_messages', :target => @level %> <%= form_tag do %> <br /><br /> <h1><%= t(:inventory_adjustment) %></h1> <table class="basic-table"> <thead data-hook="inventory_header"> <tr> <th><%= t(:sku) %></th> <th><%= t(:product) %></th> <th><%= t(:options) %></th> <th><%= t(:current) %></th> <th><%= 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><%= on_hand(@variant) %></td> <td> <%= text_field :level, :adjustment, :class => 'quantity' %> </td> </tr> </tbody> </table> <%= submit_tag t(:update) %> <%= t(:or) %> <%= link_to t(:cancel), :controller => 'overview', :action => :index %> <% end %>
Version data entries
8 entries across 8 versions & 1 rubygems