{% extends 'reports/base_index.html' %} {% load comment_filter %} {% block title %}Все комментарии{% endblock %} {% block head %} {% endblock %} {% block content %}

Комментарии

0
{% for comment in lessons %} {% if not comment.comment.saw %}
Автор: {{ comment.comment.owner_name }} [ {{ comment.comment.owner_email }} ]
Курс: {{ comment.course.get_title|truncatewords:2 }} Тема: {{ comment.theme.get_title|truncatewords:2 }} Урок №{{ comment.lesson.sort }}: {{ comment.lesson.get_title|truncatewords:2 }} {% if comment.comment.response %} Есть ответ {% endif %} Дата: {{ comment.comment.date }}

{% endif %} {% empty %} {% endfor %}
{% for comment in articles %}
Автор: {{ comment.comment.owner_name }} [ {{ comment.comment.owner_email }} ]
Статья: {{ comment.article.title }} {% if comment.comment.response %} Есть ответ {% endif %} Дата: {{ comment.comment.date }}

{% empty %} {% endfor %}
{% endblock %} {% block js %} {% endblock %}