{% extends "templates/base.html" %} {% block head %} {% endblock %} {% block content %}
{% csrf_token %} {{ form.as_p }}
{% for comment_list in comments %} {% for comment in comment_list %}
#{{ comment.id }} {{ comment.author }} {{ comment.email|default:"no mail" }} {{ comment.date|date:"D d M Y" }} delete
{{ comment.the_comment }}
{% endfor %} {% for comment in comment_list %}
{% endfor %}
{% endfor %} {% endblock %}