From 2bcac56ab4059356f9f1a0f0d970fd3c9d225f65 Mon Sep 17 00:00:00 2001 From: James Miller Date: Thu, 26 Aug 2010 12:10:21 -0700 Subject: Prefer modern idiom for rendering partials on a collection --- railties/guides/source/getting_started.textile | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'railties/guides') diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index dc60377e34..48393d2156 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -1056,8 +1056,7 @@ Then in the +app/views/posts/show.html.erb+ you can change it to look like the f

Comments

-<%= render :partial => "comments/comment", - :collection => @post.comments %> +<%= render @post.comments %>

Add a comment:

<%= form_for([@post, @post.comments.build]) do |f| %> @@ -1127,8 +1126,7 @@ Then you make the +app/views/posts/show.html.erb+ look like the following:

Comments

-<%= render :partial => "comments/comment", - :collection => @post.comments %> +<%= render @post.comments %>

Add a comment:

<%= render "comments/form" %> @@ -1381,8 +1379,7 @@ Finally, we will edit the app/views/posts/show.html.erb template to sho

Comments

-<%= render :partial => "comments/comment", - :collection => @post.comments %> +<%= render @post.comments %>

Add a comment:

<%= render "comments/form" %> @@ -1436,8 +1433,7 @@ Now you can edit the view in app/views/posts/show.html.erb to look like

Comments

-<%= render :partial => "comments/comment", - :collection => @post.comments %> +<%= render @post.comments %>

Add a comment:

<%= render "comments/form" %> -- cgit v1.2.3