<%= comment.user.try(:email) %> (<%= I18n.l(comment.created_at) %>):
<%= comment.text %>
<% if can?(:comment, comment.commentable) %>
<%= link_to "comment" , new_comment_path( commentable_type: "Comment", commentable_id: comment.id), remote:true %>
<% end %>
<%= render partial:"comments/comments", object: comment.children.order(:created_at).reverse_order if comment.children.size >0 %>