{% extends "zinnia:zinnia/entry_detail_base.html" %} {% load static i18n comments zinnia_tags mptt_tags %} {% block link %} {{ block.super }} {% endblock link %} {% block script %} {{ block.super }} {% if object.comments_are_open %}{% endif %} {% endblock %} {% block entry-comments %}

{% trans "Comments" %}

{% if object.comment_count %} {% with comment_list=object.comments %}
    {% recursetree comment_list %}
  1. {{ node.name }}

    {% if node.url %} {{ node.name }} {% else %} {{ node.name }} {% endif %} {% trans "on" %} {{ node.submit_date|date:"SHORT_DATETIME_FORMAT" }} #

    {{ node.comment|linebreaks }} {% if object.comments_are_open %}

    {% trans "Reply" %}

    {% endif %}
  2. {% if not node.is_leaf_node %}
    1. {{ children }}
  3. {% endif %} {% endrecursetree %}
{% endwith %} {% if not object.comments_are_open %}

{% trans "Comments are closed." %}

{% endif %} {% else %} {% if object.comments_are_open %}

{% trans "No comments yet." %}

{% else %}

{% trans "Comments are closed." %}

{% endif %} {% endif %}
{% endblock entry-comments %}