Created
May 31, 2010 18:43
-
-
Save noahhendrix/420137 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= content_box "Create a New Product", :size => 75, :alt => true do %> | |
<%= semantic_form_for (@product ||= Product.new) do |f| %> | |
<%= f.inputs do %> | |
<%= f.input :name %> | |
<%= f.input :accounting_code %> | |
<%= f.commit_button :button_html => { :class => "button" } %> | |
<% end %> | |
<% end %> | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment