{% block content %}
{% get_comment_count for object as comment_count %}

{% ifequal comment_count 0 %}{% trans "No comment" %}{% else %}{% blocktrans count comment_count as counter %}Only one comment{% plural %}{{ counter }} comments{% endblocktrans %}{% endifequal %}

{% if perms.blogs.can_add_comment %}
  • {% trans 'Write comment' %}
  • {% endif %} {% get_comment_list for object as comment_list %} {% include 'comments/comment_list.html' %} {% if user.is_authenticated %}
    {% include 'comments/comment_form.html' %}
    {% endif %} {% endblock %}