18 lines
432 B
Text
18 lines
432 B
Text
<section class="threadindex">
|
|
<div class="box">
|
|
<h1><%= @thread.title %></h1>
|
|
<article><%= @thread.body %></article>
|
|
</div>
|
|
|
|
<hr />
|
|
<%= render "_reply_form" %>
|
|
<hr>
|
|
<% @thread.replies.each do | reply | %>
|
|
<div class="box">
|
|
<div>
|
|
<%= reply.user.email %> said <% reply.created_at %>:
|
|
</div>
|
|
<p><%= reply.body %></p>
|
|
</div>
|
|
<% end %>
|
|
</section>
|