blob: 85b2ba10438cf6da94b28e6060d205816ee0a5bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% extends "comments/base.html" %}
{% load i18n %}
{% block title %}{% trans "Approve a comment" %}{% endblock %}
{% block content %}
<h1>{% trans "Really make this comment public?" %}</h1>
<blockquote>{{ comment|linebreaks }}</blockquote>
<form action="." method="post">{% csrf_token %}
{% if next %}
<div><input type="hidden" name="next" value="{{ next }}" id="next"/></div>{% endif %}
<p class="submit">
<input type="submit" name="submit" value="{% trans "Approve" %}"/> or <a href="{{ comment.get_absolute_url }}">cancel</a>
</p>
</form>
{% endblock %}
|