<%= (!comment.anonym) ? comment.user.try(:email) : "Anonym" %>
(<%= I18n.l(comment.created_at) %>)
<%= link_to ffi1_icon("remove9"), comment_path(comment), method: :delete, data: { confirm: 'Are you sure?' }, remote: true if can? :destroy, comment %>:
<%= comment.text %>
<% if can?(:comment, comment.commentable) && can?(:new, Comment) %>
<%= link_to "comment" , new_comment_path( commentable_type: "Comment", commentable_id: comment.id), remote:true %>
<% end %>