Listing comments

<%= render partial:"comments/comments", object: @comments %> <% @comments.each do |comment| %> <% end %>
<%= link_to 'Show', comment %> <%= link_to 'Edit', edit_comment_path(comment) %> <%= link_to 'Destroy', comment, method: :delete, data: { confirm: 'Are you sure?' } %>

<%= link_to 'New Comment', new_comment_path %>