{% load i18n molo_commenting_tags %}

{% if node.user_name.lower == 'anonymous' %} {{node.user_name}} {% else %} {% if not node.user.profile.alias %} {% trans "Anonymous" %} {% else %} {{node.user.profile.alias}} {% endif %} {% endif %}

{% if node.is_removed %}
{% trans "This comment has been removed by the community. Please read our platform rules." %}
{% else %} {% if truncate_comment %}

{{ node.comment|truncatechars:60 }}

{% else %}

{{ node.comment }}

{% endif %} {{ node.submit_date|timesince }} {% trans "Ago" %} {% if not node.user|is_in_admin_group %} {% trans "Report" %} {% endif %} {% if node.parent == None %} {% if do_not_link_replies or node.get_children.count == 0 %}

{{ node.get_children.count }} {% trans "Replies" %}

{% else %} {{ node.get_children.count }} {% trans "Replies" %} {% endif %} {% if request.user.is_authenticated%} {% trans "Reply"%} {% endif %} {% endif %} {% endif %}