Sha256: f3981fa2afe7e19f02f57e28f00fa0e43750e43a2c7ff60ec945dc11dd1bf0fc

Contents?: true

Size: 1.74 KB

Versions: 6

Compression:

Stored size: 1.74 KB

Contents

<%= render :partial => 'admin/shared/product_sub_menu' %>

<%= render "shared/error_messages", :target => @product %>

<%= form_for(:product,  :url => collection_url, :html => { :multipart => true }) do |f| %>
<fieldset>

  <%= 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="yui-gb">
    <div class="yui-u first">

      <% 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="yui-u">

      <%= 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") %><span class="required">*</span><br />
        <%= f.error_message_on :available_on %>
        <%= f.spree_date_picker :available_on, :style=>"width:150px" %>
      </p>

       <p>
        <%= f.label :sales_end, t("sales_end") %><span class="required">*</span><br />
        <%= f.error_message_on :sales_end %>
        <%= f.spree_date_picker :sales_end %>
      </p>
      
    </div>
  </div>

  <%= render :partial => 'admin/shared/new_resource_links' %>

</fieldset>
<% end %>
<%= javascript_tag "datePickerController.create();" %>

Version data entries

6 entries across 6 versions & 5 rubygems

Version Path
apispree_core-0.0.0 app/views/admin/products/new.erb
My-Commerce_core-1.1.0 app/views/admin/products/new.erb
My-Commerce_core-1.0.0 app/views/admin/products/new.erb
MyCommerceapi-1.0.0 core/app/views/admin/products/new.erb
MyCommerce-0.0.3 core/app/views/admin/products/new.erb
rfcommerce_core-0.0.3 app/views/admin/products/new.erb