diff options
author | Oscar Del Ben <info@oscardelben.com> | 2012-04-25 15:43:10 +0200 |
---|---|---|
committer | Oscar Del Ben <info@oscardelben.com> | 2012-04-25 15:43:10 +0200 |
commit | ee4e7125a61c703332a8d591a0aee917ba828e62 (patch) | |
tree | ba3fd8f712d3ec262969f54967a908252608547d /guides/code/getting_started/app/views/posts | |
parent | ccbd32c294bf685a389d456164a12fd777756873 (diff) | |
download | rails-ee4e7125a61c703332a8d591a0aee917ba828e62.tar.gz rails-ee4e7125a61c703332a8d591a0aee917ba828e62.tar.bz2 rails-ee4e7125a61c703332a8d591a0aee917ba828e62.zip |
Add partials section to getting started guide
Diffstat (limited to 'guides/code/getting_started/app/views/posts')
-rw-r--r-- | guides/code/getting_started/app/views/posts/_form.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/code/getting_started/app/views/posts/_form.html.erb b/guides/code/getting_started/app/views/posts/_form.html.erb index 46ec257b91..b35ea2f237 100644 --- a/guides/code/getting_started/app/views/posts/_form.html.erb +++ b/guides/code/getting_started/app/views/posts/_form.html.erb @@ -1,4 +1,4 @@ -<%= form_for :post, :url => { :action => :update, :id => @post.id }, :method => :put do |f| %> +<%= form_for @post do |f| %> <% if @post.errors.any? %> <div id="errorExplanation"> <h2><%= pluralize(@post.errors.count, "error") %> prohibited this post from being saved:</h2> |