mirror of
https://github.com/TracksApp/tracks.git
synced 2026-02-23 07:34:08 +01:00
also removes deprecated methods. All tests pass (at least on my machine!) and raise no deprecation warnings. git-svn-id: http://www.rousette.org.uk/svn/tracks-repos/trunk@365 a4c988fc-2ded-0310-b66e-134b36920a42
32 lines
No EOL
636 B
Text
32 lines
No EOL
636 B
Text
<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> |