{% extends "templates/base.html" %} {% block head %} {% endblock %} {% block content %}
{% csrf_token %} {{ form.as_p }} Available tags:
Editor
{% if editor == "html" %}
{% else %}
{% endif %}
{% for comment in comments %}
#{{ comment.id }} {{ comment.author }} {{ comment.email|default:"no mail" }} {{ comment.date|date:"D d M Y H:m" }} delete
{% autoescape off %} {{ comment.the_comment }} {% endautoescape %}
{% endfor %}

{% if editor == "html" %}