Skip to content

Instantly share code, notes, and snippets.

@amiel
Created April 22, 2010 00:18
Show Gist options
  • Save amiel/374630 to your computer and use it in GitHub Desktop.
Save amiel/374630 to your computer and use it in GitHub Desktop.
<% for person in @people %>
<%= render :partial => 'person', :locals => { :person => person } %>
<% end %>
<% for person in @people %>
<%= render :partial => 'person', :object => person %>
<% end %>
<%= render :partial => 'person', :collection => @people %>
<%= render :partial => @people %>
<%= render @people %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment