aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/examples/debate/topic.erb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2007-09-09 17:55:26 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2007-09-09 17:55:26 +0000
commit955fa6151aabfbe0626c84005cb0cad27da3e5c3 (patch)
tree8d9175f86572bbf00f5e3f021e7b6c7b3804e3f2 /actionpack/examples/debate/topic.erb
parent73c70836515879f69a152535f3ab411acc3317b8 (diff)
downloadrails-955fa6151aabfbe0626c84005cb0cad27da3e5c3.tar.gz
rails-955fa6151aabfbe0626c84005cb0cad27da3e5c3.tar.bz2
rails-955fa6151aabfbe0626c84005cb0cad27da3e5c3.zip
The examples are outdated and misleading
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7424 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/examples/debate/topic.erb')
-rw-r--r--actionpack/examples/debate/topic.erb32
1 files changed, 0 insertions, 32 deletions
diff --git a/actionpack/examples/debate/topic.erb b/actionpack/examples/debate/topic.erb
deleted file mode 100644
index e247c00f0d..0000000000
--- a/actionpack/examples/debate/topic.erb
+++ /dev/null
@@ -1,32 +0,0 @@
-<html>
-<body>
-<h1><%= @topic.title %></h1>
-
-<p><%= @topic.body %></p>
-
-<%= link_to "Back to topics", :action => "index" %>
-
-<% unless @topic.replies.empty? %>
- <h2>Replies</h2>
- <ol>
- <% for reply in @topic.replies %>
- <li><%= reply.body %></li>
- <% end %>
- </ol>
-<% end %>
-
-<h2>Reply to this topic</h2>
-
-<form action="<%= url_for(:action => "create_reply") %>" method="post">
- <input type="hidden" name="reply[topic_id]" value="<%= @topic.id %>">
- <p>
- <textarea name="reply[body]" style="width: 200px; height: 200px"></textarea>
- </p>
-
- <p>
- <input type="submit" value="Create reply">
- </p>
-</form>
-
-</body>
-</html> \ No newline at end of file