{% load i18n %}

{{ article.get_comments.count }} {% trans 'Comments' %}

{% csrf_token %}
{% for comment in article.get_comments %} {% include 'articles/partial_article_comment.html' with comment=comment %} {% empty %}
{% trans 'Be the first one to comment!' %}
{% endfor %}