{% extends "comments/base.html" %} {% load i18n %} {% load comments_ink %} {% block title %}{% trans "Flag comment" %}{% endblock %} {% block content %}

{% if user_flagged %}{% trans "You already flagged this comment." %} {% else %}{% trans "Flag this comment?" %}{% endif %}

{% trans "Comment sent to:" %}
{{ comment.content_object }}
{% if comment.url and not comment.is_removed %}{{ comment.name }}{% else %}{{ comment.name }}{% endif %} ⋅ {{ comment.submit_date }}  
{{ comment.comment|linebreaks|escape }}
{% if user_flagged %}{% trans "Click on the remove button to no longer mark the comment as inappropriate." %}{% else %}{% trans "Click on the flag button to mark the following comment as inappropriate." %}{% endif %}
{% csrf_token %}
  {% trans "cancel" %}
{% endblock %}