Skip to content

Instantly share code, notes, and snippets.

@migane
Created December 12, 2008 07:50
Show Gist options
  • Save migane/35049 to your computer and use it in GitHub Desktop.
Save migane/35049 to your computer and use it in GitHub Desktop.
in _form.html.erb
<%= error_messages_for @books %>
<p>Name of book: <%= text_field :name, :size =>"40" %></p>
<p><%= "&nbsp;" * 13 %>Author: <%= select :author_id, :collection => Author.all.map {|u| [u.id, full_name(u.first_name, u.last_name)]} %>
<p><%= "&nbsp;" * 5 %>Description: <%= text_area :description, :cols => "40", :rows => "2", :wrap => "SOFT" %></p>
<p><%= "&nbsp;" * 17 %>Price: <%= text_field :price, :size => "7" %></p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment