<%= render :partial => 'spree/admin/shared/product_sub_menu' %> <%= render :partial => 'spree/shared/error_messages', :locals => { :target => @product } %> <%= form_for [:admin, @product], :html => { :multipart => true } do |f| %>
<%= f.field_container :name do %> <%= f.label :name, t(:name) %> *
<%= f.text_field :name, :class => 'fullwidth title' %> <%= f.error_message_on :name %> <% end %>
<% unless @product.has_variants? %> <%= f.field_container :sku do %> <%= f.label :sku, t(:sku) %>
<%= f.text_field :sku, :size => 16 %> <%= f.error_message_on :sku %> <% end %> <% end %> <%= f.field_container :prototype do %> <%= f.label :prototype_id, t(:prototype) %>
<%= f.collection_select :prototype_id, Spree::Prototype.all, :id, :name, :include_blank => true %> <% end %>
<%= f.field_container :price do %> <%= f.label :price, t(:master_price) %> *
<%= f.text_field :price %> <%= f.error_message_on :price %> <% end %>

<%= f.label :available_on, t(:available_on) %>
<%= f.error_message_on :available_on %> <%= f.text_field :available_on, :class => 'datepicker', :style => "width:150px" %>

<%= render :file => 'spree/admin/prototypes/show' if @prototype %>
<%= render :partial => 'spree/admin/shared/new_resource_links' %>
<% end %>