Comments fully integrated.
[~kgodey/maayanwich.git] / templates / comments / approve.html
1 {% extends "comments/base.html" %}
2 {% load i18n %}
3
4 {% block title %}{% trans "Approve a comment" %}{% endblock %}
5
6 {% block content %}
7   <h1>{% trans "Really make this comment public?" %}</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 "Approve" %}" /> or <a href="{{ comment.get_absolute_url }}">cancel</a>
13     </p>
14   </form>
15 {% endblock %}