sillyforum/app/views/forum_threads/show.html.erb

19 lines
545 B
Text
Raw Permalink Normal View History

2026-03-17 12:49:38 +00:00
<section class="threadindex">
<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>
</section>
<hr /><section class="replies"
<%= render 'forum_threads/reply_form' %>
2026-03-17 12:49:38 +00:00
<hr>
<% @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>
</section>
2026-03-17 12:49:38 +00:00
<% end %>
</section>