summaryrefslogtreecommitdiff
path: root/app/lib/django_comments/templates/comments/flag.html
blob: c5fe743e5dc602680842856758849fb906f8fe8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "comments/base.html" %}
{% load i18n %}

{% block title %}{% trans "Flag this comment" %}{% endblock %}

{% block content %}
  <h1>{% trans "Really flag this comment?" %}</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 "Flag" %}"/> or <a
            href="{{ comment.get_absolute_url }}">cancel</a>
    </p>
  </form>
{% endblock %}