{% extends "core/article_page.html" %} {% load wagtailcore_tags molo_commenting_tags gem_tags %} {% block content %} {% get_comments_content_object for form as self %} {% pageurl self as the_url %}
{% trans "Back to article" %}

{% trans "Your thoughts" %}

{% with comment as node %}
{% if node.user.is_staff %} {% if settings.gem.GemSettings.moderator_name %} {{settings.gem.GemSettings.moderator_name}} {% else %} {% trans "Big Sister" %} {% endif %} - {% trans "Moderator" %} {% elif node.user_name.lower == 'anonymous' %} {% trans "Anonymous" %} {% 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|smarttruncatechars:100 }}

{% if node.comment.200 %} {% trans "Read More"%} {% endif %} {% 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 %} {% trans "Reply"%} {% if do_not_link_replies or node.get_children.count == 0 %}

{{ node.get_children.count }} {% if node.get_children.count == 0 or node.get_children.count == 1 %} {% trans "Reply" %} {% else %} {% trans "Replies" %} {% endif %}

{% else %} {{ node.get_children.count }} {% if node.get_children.count == 0 or node.get_children.count == 1 %} {% trans "Reply" %} {% else %} {% trans "Replies" %} {% endif %} {% endif %} {% endif %}
{% endif %}
{% endwith %}
{% with comment as node %}
{% if node.parent == None and node.get_children.count != 0 %}

{% trans "Recent Replies"%}

{% endif %} {% endwith %} {% if do_not_link_replies or node.get_children.count == 0 %}
{% if page == 1 %} {% trans "Recent replies" %} {% else %} {% trans "Earlier replies" %} {% endif %}
{% endif %} {% for node in replies reversed %}
{% if node.user.is_staff %} {% if settings.gem.GemSettings.moderator_name %} {{settings.gem.GemSettings.moderator_name}} {% else %} {% trans "Big Sister" %} {% endif %} - {% trans "Moderator" %} {% elif node.user_name.lower == 'anonymous' %} {% trans "Anonymous" %} {% 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|smarttruncatechars:100 }}

{% if node.comment.200 %} {% trans "Read More"%} {% endif %} {% 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 %} {% trans "Reply"%}
Reply =>
{% if do_not_link_replies or node.get_children.count == 0 %}

{{ node.get_children.count }} {% if node.get_children.count == 0 or node.get_children.count == 1 %} {% trans "Reply" %} {% else %} {% trans "Replies" %} {% endif %}

{% else %} {{ node.get_children.count }} {% if node.get_children.count == 0 or node.get_children.count == 1 %} {% trans "Reply" %} {% else %} {% trans "Replies" %} {% endif %} {% endif %} {% endif %}
{% endif %} {% if node.parent == None and node.get_children.count != 0 %}

{% trans "Recent Replies"%}

{% endif %}
{% endfor %}
{% if self.allow_commenting %}

{% trans "Add your reply" %}

{% if request.user.is_authenticated %}
{% csrf_token %}
{% if form.errors %}

{% trans "Please correct the error below" %}

{% endif %} {{ form.comment }} {% if form.comment.errors %}{{ form.comment.errors }}{% endif %}
{{ form.object_pk }} {{ form.content_type }} {{ form.timestamp }} {{ form.security_hash }} {% if comment.id %} {% endif %}
{% else %} {% endif %}
{% else %}

{% trans "Add your reply" %}

{% trans "Commenting on this article is currently disabled" %}.

{% endif %}
{% trans "Back to article" %}
{% endblock %}