aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/examples/debate/topic.rhtml
blob: e247c00f0d22a2461e2b681c0e91e01d2522bee4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<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>