{% extends 'main/layout.html' %} {% block title %}Deleting comment — {{ request.user.username }} at Mataroa{% endblock %} {% block content %}

Are you sure you want to delete this comment?

{{ comment.body_as_html|safe }} {% if comment.is_author %}

This is a comment by you as blog author.

{% else %}

by {{ comment.name|default:"(no name)" }} / {{ comment.email|default:"(no email)" }}

{% if comment.is_approved %}

This is an approved comment.

{% endif %} {% endif %}
{% csrf_token %}
{% endblock %}