{% extends "admin-base-auth.html" %} {% load i18n %} {% load static %} {% block content %}

{% translate "Comments" %}

{% if comments|length == 0 %}

There are no comments to moderate.

{% else %} {% for comment in comments %}
{% translate "User name:" %} {{comment.user_name}}
{% translate "User email:" %} {{comment.user_email}}

{% translate "Comment:" %}

{{comment.comment}}

{% endfor %} {% endif %}
{% endblock %}