Sha256: 423d27f16955920a204fe87903627241f228f222f55f32ac9a934a3491a5591c
Contents?: true
Size: 1.5 KB
Versions: 1
Compression:
Stored size: 1.5 KB
Contents
<%= render :partial => 'admin/shared/product_sub_menu' %> <%= render "shared/error_messages", :target => @product %> <%= form_for([:admin, @product], :html => { :multipart => true }) do |f| %> <fieldset data-hook="new_product"> <%= f.field_container :name do %> <%= f.label :name, t("name") %> <span class="required">*</span><br /> <%= f.text_field :name, :class => 'fullwidth title' %> <%= f.error_message_on :name %> <% end %> <div class="clearfix" data-hook="new_product_attrs"> <div class="left"> <% unless @product.has_variants? %> <%= f.field_container :sku do %> <%= f.label :sku, t("sku") %><br /> <%= f.text_field :sku, :size => 16 %> <%= f.error_message_on :sku %> <% end %> <% end %> <p> <%= f.label :prototype_id, t("prototype") %><br /> <%= f.collection_select :prototype_id, Prototype.all, :id, :name, :include_blank => true %> </p> </div> <div class="right"> <%= f.field_container :price do %> <%= f.label :price, t("master_price")%> <span class="required">*</span><br /> <%= f.text_field :price %> <%= f.error_message_on :price%> <% end %> <p> <%= f.label :available_on, t("available_on") %><br /> <%= f.error_message_on :available_on %> <%= f.text_field :available_on, :class => 'datepicker', :style => "width:150px" %> </p> </div> </div> <%= render :partial => 'admin/shared/new_resource_links' %> </fieldset> <% end %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
spree_core-0.70.0.rc2 | app/views/admin/products/new.html.erb |