|
0
|
1 |
{% extends "comments/base.html" %} |
|
|
2 |
{% load i18n %} |
|
|
3 |
|
|
|
4 |
{% block title %}{% trans "Flag this comment" %}{% endblock %} |
|
|
5 |
|
|
|
6 |
{% block content %} |
|
|
7 |
<h1>{% trans "Really flag this comment?" %}</h1> |
|
|
8 |
<blockquote>{{ comment|linebreaks }}</blockquote> |
|
29
|
9 |
<form action="." method="post">{% csrf_token %} |
|
0
|
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 "Flag" %}" /> or <a href="{{ comment.get_absolute_url }}">cancel</a> |
|
|
13 |
</p> |
|
|
14 |
</form> |
|
|
15 |
{% endblock %} |