{% extends "layout.html" %} {% load static %} {% load comments %} {% load posts %} {% load text_filters %} {% load paginator %} {% block title %} Комментарии от {{ user.full_name }} — {{ block.super }} {% endblock %} {% block content %}
{% include "users/widgets/card.html" with user=user %}
{{ comments.paginator.count }} {{ comments.paginator.count|rupluralize:"комментарий,комментария,комментариев" }}
{% if comments %} {% for comment in comments %} {% include "comments/types/snippet.html" with comment=comment %} {% endfor %} {% else %}
Пользователь пока не оставил комментариев...
{% endif %}
{% paginator comments %}
{% endblock %}