Skip to content

Instantly share code, notes, and snippets.

@butzopower
Created June 2, 2009 15:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save butzopower/122320 to your computer and use it in GitHub Desktop.
Save butzopower/122320 to your computer and use it in GitHub Desktop.
# What is worse?
<%= f.table "Bill Dates", @bill_dates do |t|
t.date
t.billed?
end %>
# Or
<% f.table "Bill Dates", @bill_dates do |t| %>
<%= t.add_field(:date) %>
<%= t.billed? %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment