Sha256: 77628edba1cf2d9a31dc22c5c1b952d44dbb8b2c24fa2e2161bea40ae35d9e6b
Contents?: true
Size: 1.49 KB
Versions: 9
Compression:
Stored size: 1.49 KB
Contents
<%= render :partial => 'admin/shared/product_sub_menu' %> <%= error_messages_for :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") %><br /> <%= f.error_message_on :available_on %> <%= f.unobtrusive_date_text_picker :available_on, :style=>"width:150px" %> </p> </div> </div> <%= render :partial => 'admin/shared/new_resource_links' %> </fieldset> <% end %> <%= javascript_tag "datePickerController.create();" %>
Version data entries
9 entries across 9 versions & 1 rubygems