<%= format_text(comment.body) %>
<% if comment.updated_at - comment.created_at > 5.minutes %>
<% if CurrentUser.is_member? %>
<% if comment.editable_by?(CurrentUser.user) %>
<%= render "comments/form", :post => comment.post, :comment => comment %>
<% end %>
<% end %>
Updated by <%= link_to_user comment.updater %> <%= time_ago_in_words_tagged(comment.updated_at) %>
<% end %>