Sha256: ec23eef02343ba661770d26c6a311eb691ef81b4ed2f5bce8566f62e9d48c3b1
Contents?: true
Size: 636 Bytes
Versions: 107
Compression:
Stored size: 636 Bytes
Contents
<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>
Version data entries
107 entries across 107 versions & 6 rubygems