2026-03-17 12:49:38 +00:00
|
|
|
<section class="threadindex">
|
2026-03-18 01:57:09 +00:00
|
|
|
<section class="post">
|
|
|
|
|
<section class="threadtitle"> <h1><%= @forum_thread.title %></h1>
|
|
|
|
|
</section> <article><%= @forum_thread.body %></article>
|
2026-03-17 12:49:38 +00:00
|
|
|
</div>
|
2026-03-18 01:57:09 +00:00
|
|
|
</section>
|
|
|
|
|
<hr /><section class="replies"
|
|
|
|
|
<%= render 'forum_threads/reply_form' %>
|
2026-03-17 12:49:38 +00:00
|
|
|
<hr>
|
2026-03-18 01:57:09 +00:00
|
|
|
<% @forum_thread.replies.each do | reply | %>
|
2026-03-17 12:49:38 +00:00
|
|
|
<div class="box">
|
|
|
|
|
<div>
|
|
|
|
|
<%= reply.user.email %> said <% reply.created_at %>:
|
|
|
|
|
</div>
|
|
|
|
|
<p><%= reply.body %></p>
|
2026-03-18 01:57:09 +00:00
|
|
|
</section>
|
2026-03-17 12:49:38 +00:00
|
|
|
<% end %>
|
|
|
|
|
</section>
|