Listing comments

<% @comments.each do |comment| %> <% end %>
User File Row Column Text
<%= comment.user %> <%= comment.file %> <%= comment.row %> <%= comment.column %> <%= comment.text %> <%= 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 %>