<%= avatar_image(comment.user, size: 32, class: 'left') %>
<%= comment.user.name %> • <%= time_ago_in_words(comment.created_at) %>

<%= comment.body %>

<%= render 'comments/votes', comment: comment %>

<%= t("debates.comment.responses", count: comment.children_count) %> <% if user_signed_in? %>  |  <%= render 'comments/form', {parent: comment, toggeable: true} %> <% end %>

<%= render comment.children.reorder('id DESC, lft') %>