Guest User

Untitled

a guest
Jun 18th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <%= link_to @conversation.board.title, @conversation.board%>
  2. <p id="notice"><%= notice %></p>
  3.  
  4.  
  5.  
  6. <table>
  7. <tr>
  8. <th colspan="2"><%= @conversation.title %></th>
  9. </tr>
  10. <% @conversation.comments.each do |comment| %>
  11. <tr>
  12. <td style="width:25%;">
  13. <%= link_to comment.user.username, comment.user %> <br />
  14. Posted At <br />
  15. <%= comment.created_at%>
  16. </td>
  17. <td>
  18. <p><%=comment.body%></p>
  19. </td>
  20. </tr>
  21. <% end %>
  22. </table>
  23. <%= link_to 'Reply', reply_board_conversation_url(:board_id=>@board, :id=>@conversation)%> |
  24. <%= link_to @conversation.board.title, @conversation.board%>
Add Comment
Please, Sign In to add comment