aboutsummaryrefslogtreecommitdiffstats
path: root/guides/code/getting_started/app/views/posts/_form.html.erb
diff options
context:
space:
mode:
authorJohn Kelly Ferguson <hello@johnkellyferguson.com>2014-05-25 18:48:14 -0400
committerJohn Kelly Ferguson <hello@johnkellyferguson.com>2014-05-25 18:48:14 -0400
commit45072f34d27bda34b182f14f8b02d778d1648cce (patch)
tree66a21875edf8908997ba28f63a8d32f8cedd2a0b /guides/code/getting_started/app/views/posts/_form.html.erb
parent6c30717f8c182dc05f63779b3a9a532fb9076b05 (diff)
downloadrails-45072f34d27bda34b182f14f8b02d778d1648cce.tar.gz
rails-45072f34d27bda34b182f14f8b02d778d1648cce.tar.bz2
rails-45072f34d27bda34b182f14f8b02d778d1648cce.zip
Rename Posts to Articles in Guides' Getting Started App, continuation of #15215 [ci skip]
Diffstat (limited to 'guides/code/getting_started/app/views/posts/_form.html.erb')
-rw-r--r--guides/code/getting_started/app/views/posts/_form.html.erb27
1 files changed, 0 insertions, 27 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
deleted file mode 100644
index f2f83585e1..0000000000
--- a/guides/code/getting_started/app/views/posts/_form.html.erb
+++ /dev/null
@@ -1,27 +0,0 @@
-<%= form_for @post do |f| %>
- <% if @post.errors.any? %>
- <div id="error_explanation">
- <h2><%= pluralize(@post.errors.count, "error") %> prohibited
- this post from being saved:</h2>
- <ul>
- <% @post.errors.full_messages.each do |msg| %>
- <li><%= msg %></li>
- <% end %>
- </ul>
- </div>
- <% end %>
- <p>
- <%= f.label :title %><br>
- <%= f.text_field :title %>
- </p>
-
- <p>
- <%= f.label :text %><br>
- <%= f.text_area :text %>
- </p>
-
- <p>
- <%= f.submit %>
- </p>
-<% end %>
-