{% extends 'base.html' %} {% load i18n %} {% block title %} {% trans "Comments administration" %} {% endblock %} {% block content %}

{% for comment in comments %} {% endfor %}
# Author Time Message Moderate Delete
{{ comment.id }} {{ comment.author_name }} {{ comment.time }} {{ comment.message }} {% if not comment.is_moderated %} {% if comment.blog %}
{% else %}
{% endif %} {% endif %}
{% if comment.blog %}
{% else %}
{% endif %}
{% if page_obj.has_previous %} {% trans "Previous page" %}
{% endif %} {% if page_obj.has_next %} {% trans "Next page" %}
{% endif %}
{% endblock %}