% content_for :head do %> <%= calendar_date_select_includes %> <% end %>
<%= t("Name")%>: | <%=error_message_on :product, :name%> <%= text_field :product, :name %> |
<%= t("Description")%>: | <%= error_message_on :product, :description %> <%= text_area :product, :description, {:cols => 90, :rows => 10} %> |
<%= t("Master Price")%>: | <%=error_message_on :product, :master_price%> <%= text_field :product, :master_price %> |
<%= t("Available On")%>: | <%= error_message_on :product, :available %> <%= calendar_date_select :product, :available_on, :style=>"width:150px" %> |
<%=t("SKU")%>: | <%= f.text_field :sku, :size => 16 %> |
<%=t("On Hand")%>: | <%= f.text_field :on_hand, :size => 4 %> |
<%=t("Shipping Category")%>: | <%= collection_select(:product, :shipping_category_id, @shipping_categories, :id, :name, {:include_blank => true}, {"style" => "width:200px"}) %> |
<%=t("Tax Category")%>: | <%= collection_select(:product, :tax_category_id, @tax_categories, :id, :name, {:include_blank => true}, {"style" => "width:200px"}) %> |
<%= render :partial => 'images', :locals => {:viewable => @product, :f => f} -%>
|