% content_for :head do %> <%= calendar_date_select_includes %> <% end %>
<%= f.label :available_on, t("available_on") %>
<%= f.error_message_on :available_on %>
<%= calendar_date_select :product, :available_on, :style=>"width:150px" %>
<%= f.label :sku, t("sku") %>
<%= f.text_field :sku, :size => 16 %>
<%= f.label :on_hand, t("on_hand")%>
<%= f.text_field :on_hand, :size => 4 %>
<%= f.label :shipping_category_id, t("shipping_categories")%>
<%= f.collection_select(:shipping_category_id, @shipping_categories, :id, :name, {:include_blank => true}, {"style" => "width:200px"}) %>
<%= f.error_message_on :shipping_category %>
<%= f.label :tax_category_id, t("tax_category")%>
<%= f.collection_select(:tax_category_id, @tax_categories, :id, :name, {:include_blank => true}, {"style" => "width:200px"}) %>
<%= f.error_message_on :tax_category%>
<%= f.label :meta_keywords, t("meta_keywords")%>
<%= f.text_field :meta_keywords, :class => 'fullwidth' %>
<%= f.label :meta_description, t("meta_description")%>
<%= f.text_field :meta_description, :class => 'fullwidth' %>