Guest User

Untitled

a guest
Jun 18th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <h1 id="page_title"><%= @board.title %></h1>
  2. <p id="notice"><%= notice %></p>
  3. <%= link_to 'Rails Boards', boards_path %> > <%= link_to @board.title, @board %> <br />
  4.  
  5. <table>
  6. <tr>
  7. <th>Post / Author</th>
  8. <th>Last Reply</th>
  9. <th>Number of Replies</th>
  10. </tr>
  11. <% @board.conversations.each do |conversation| %>
  12. <tr>
  13. <td>
  14. <%= link_to conversation.title, board_conversation_path(:board_id => @board, :id => conversation) %><br />
  15. <%= conversation.user.username %>
  16. </td>
  17. <td>
  18. <%= conversation.comments.find(:last).created_at %><br />
  19. by <%= conversation.comments.find(:last).user.username %>
  20. </td>
  21. <td>
  22. <%= conversation.comments.count - 1%>
  23. </td>
  24. </tr>
  25. <% end %>
  26. </table>
  27.  
  28.  
  29. <%= link_to 'Post New Message', new_board_conversation_url(@board) %>
Add Comment
Please, Sign In to add comment