22 lines
No EOL
508 B
HTML
22 lines
No EOL
508 B
HTML
{% extends "reports/report_base.html" %}
|
|
|
|
{% block heading %}
|
|
<h1>Report comment</h1>
|
|
|
|
<p>You are about to report the comment with ID {{ id |to_b32l }}</p>
|
|
{% endblock %}
|
|
|
|
{% block options %}
|
|
<ul>
|
|
{% for opt in report_reasons %}
|
|
<li>
|
|
<a href="?reason={{ opt.code |urlencode }}">{{ opt.description }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|
|
|
|
{% block report_data %}
|
|
<input type="hidden" name="rp_target" value="{{ id }}" />
|
|
<input type="hidden" name="rp_type" value="comment" />
|
|
{% endblock %} |