Created
May 26, 2012 17:41
-
-
Save tjh/2794746 to your computer and use it in GitHub Desktop.
This file contains 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
<% @customers.all.each_with_index do |i, customer| %> | |
<h1><%= "Customer #{i}: #{customer.name}" %></h1> | |
<% end %> | |
customers.collect { |c| c.address.city }.uniq | |
<% form_for @customer %> | |
<%= f.label :name %> | |
<%= f.input :name %> | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment