Guest User

Untitled

a guest
Jul 22nd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <p>
  2. <b>Forum:</b>
  3. <%=h @forum.name %>
  4. -
  5. <%=h @forum.description %>
  6. |
  7. <%= link_to 'Back', forums_path %>
  8. </p>
  9.  
  10.  
  11. <p>
  12. <b><%=h @topic.name %></b> says "<%=h @topic.subject %>"
  13. </p>
  14.  
  15. <p>
  16. <%=h @topic.body %>
  17. </p>
  18.  
  19. <% unless @topic.replies.empty? %>
  20. <p>
  21. <div id="Replies">
  22. <% render :partial => 'replies/show', :collection => @topic.replies %>
  23. </div>
  24. </p>
  25. <% end %>
  26.  
  27. <% if @user %>
  28. <h2>Reply</h2>
  29. <%= render :partial => @reply = Reply.new, :locals => { :button_name => 'Reply' } %>
  30.  
  31. <% if is_admin? || @topic.name == @user.name %>
  32. <%= link_to 'Edit', edit_forum_topic_path(@forum, @topic) %> |
  33. <% end %>
  34. <% end %>
Add Comment
Please, Sign In to add comment