sillyforum/app/views/forum_threads/show.html.erb
2026-03-17 12:49:38 +00:00

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>