<%= @thread.title %>

<%= @thread.body %>

<%= render "_reply_form" %>
<% @thread.replies.each do | reply | %>
<%= reply.user.email %> said <% reply.created_at %>:

<%= reply.body %>

<% end %>