aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/code/getting_started/app/views/comments/_form.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/guides/code/getting_started/app/views/comments/_form.html.erb')
-rw-r--r--railties/guides/code/getting_started/app/views/comments/_form.html.erb13
1 files changed, 0 insertions, 13 deletions
diff --git a/railties/guides/code/getting_started/app/views/comments/_form.html.erb b/railties/guides/code/getting_started/app/views/comments/_form.html.erb
deleted file mode 100644
index d15bdd6b59..0000000000
--- a/railties/guides/code/getting_started/app/views/comments/_form.html.erb
+++ /dev/null
@@ -1,13 +0,0 @@
-<%= form_for([@post, @post.comments.build]) do |f| %>
- <div class="field">
- <%= f.label :commenter %><br />
- <%= f.text_field :commenter %>
- </div>
- <div class="field">
- <%= f.label :body %><br />
- <%= f.text_area :body %>
- </div>
- <div class="actions">
- <%= f.submit %>
- </div>
-<% end %>