Skip to content

Instantly share code, notes, and snippets.

@rocodev-tech
Last active August 29, 2015 14:03
Show Gist options
  • Save rocodev-tech/8f16997ff438eba999b0 to your computer and use it in GitHub Desktop.
Save rocodev-tech/8f16997ff438eba999b0 to your computer and use it in GitHub Desktop.
app/views/admin/products/new.html.erb
<%= form_for [:admin, @product] do |f| %>
<div class="group">
<%= f.label("標題") %>
<%= f.text_field :title %>
</div>
<div class="group">
<%= f.label("敘述") %>
<%= f.text_area :description %>
</div>
<div class="group">
<%= f.label("數量") %>
<%= f.text_field :quantity %>
</div>
<%= f.submit "Submit", :disable_with => 'Submiting...' %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment