Comments

<%#= link_to fa_icon("plus-square", text: "Add Comment", class: "fa-fw"), [:new, organization, project, finish, :comment] %>
<% comments.each do |comment| %>
<% if comment.user == current_user %>
<%#= link_to fa_icon("pencil", text: "Edit", class: "fa-fw"), [:edit, organization, project, finish, comment] %>
<% end %>

<%= comment.user.name %> - <%= l comment.created_at, format: :date_and_time %> <% if comment.updated? %> (edited <%= l comment.updated_at, format: :date_and_time %>) <% end %>

<%= simple_format comment.body %>
<% end %>