Comments fully integrated.
[~kgodey/maayanwich.git] / templates / comments / delete.html
1 {% extends "comments/base.html" %}
2 {% load i18n %}
3
4 {% block title %}{% trans "Remove a comment" %}{% endblock %}
5
6 {% block content %}
7 <h1>{% trans "Really remove this comment?" %}</h1>
8   <blockquote>{{ comment|linebreaks }}</blockquote>
9   <form action="." method="post">
10     {% if next %}<input type="hidden" name="next" value="{{ next }}" id="next" />{% endif %}
11     <p class="submit">
12     <input type="submit" name="submit" value="{% trans "Remove" %}" /> or <a href="{{ comment.get_absolute_url }}">cancel</a>
13     </p>
14   </form>
15 {% endblock %}