app/django/contrib/comments/templates/comments/delete.html
author Pawel Solyga <Pawel.Solyga@gmail.com>
Sun, 30 Nov 2008 16:29:48 +0000
changeset 623 01757248f7c3
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Remove unused imports in soc.views.models.user and soc.views.models.sponsor modules. Patch by: Pawel Solyga

{% extends "comments/base.html" %}
{% load i18n %}

{% block title %}{% trans "Remove a comment" %}{% endblock %}

{% block content %}
<h1>{% trans "Really remove this comment?" %}</h1>
  <blockquote>{{ comment|linebreaks }}</blockquote>
  <form action="." method="post">
    <input type="hidden" name="next" value="{{ next }}" id="next" />
    <p class="submit">
    <input type="submit" name="submit" value="{% trans "Remove" %}" /> or <a href="{{ comment.permalink }}">cancel</a>
    </p>
  </form>
{% endblock %}