2012-04-16 09:28:57 +02:00
|
|
|
<div class="report">
|
|
|
|
<hr>
|
2012-05-05 17:33:10 +02:00
|
|
|
{% trans 'Board' %}: <a href="?/{{ report.board }}/{{ config.file_index }}">{{ config.board_abbreviation|sprintf(report.board) }}</a>
|
2012-04-16 09:28:57 +02:00
|
|
|
<br>
|
2012-05-05 17:33:10 +02:00
|
|
|
{% trans 'Reason' %}: {{ report.reason }}
|
2012-04-16 09:28:57 +02:00
|
|
|
<br>
|
2012-05-05 17:33:10 +02:00
|
|
|
{% trans 'Report date' %}: {{ report.time|date(config.post_date) }}
|
2012-04-16 09:28:57 +02:00
|
|
|
<br>
|
|
|
|
{% if mod|hasPermission(config.mod.show_ip, report.board) %}
|
2021-02-13 14:11:41 +01:00
|
|
|
{% trans 'Reported by' %}: <a href="?/IP/{{ report.ip|cloak_ip }}">{{ report.ip|cloak_ip }}</a>
|
2012-04-16 09:28:57 +02:00
|
|
|
<br>
|
|
|
|
{% endif %}
|
|
|
|
{% if mod|hasPermission(config.mod.report_dismiss, report.board) or mod|hasPermission(config.mod.report_dismiss_ip, report.board) %}
|
|
|
|
<hr>
|
|
|
|
{% if mod|hasPermission(config.mod.report_dismiss, report.board) %}
|
2013-09-23 08:48:56 +02:00
|
|
|
<a title="{% trans 'Discard abuse report' %}" href="?/reports/{{ report.id }}/dismiss/{{ token }}">Dismiss</a>
|
2012-04-16 09:28:57 +02:00
|
|
|
{% endif %}
|
|
|
|
{% if mod|hasPermission(config.mod.report_dismiss_ip, report.board) %}
|
|
|
|
{% if mod|hasPermission(config.mod.report_dismiss, report.board) %}
|
2023-04-24 03:07:16 +02:00
|
|
|
|
|
2012-04-16 09:28:57 +02:00
|
|
|
{% endif %}
|
2023-04-24 03:07:16 +02:00
|
|
|
<a title="{% trans 'Discard all abuse reports by this IP address' %}" href="?/reports/{{ report.id }}/dismiss&all/{{ token_all }}">Dismiss+</a>
|
|
|
|
{% endif %}
|
|
|
|
{% if mod|hasPermission(config.mod.report_dismiss_post, report.board) %}
|
|
|
|
{% if mod|hasPermission(config.mod.report_dismiss, report.board) %}
|
|
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
<a title="{% trans 'Dismissed all reports for the post' %}" href="?/reports/{{ report.id }}/dismiss&post/{{ token_post }}">Dismiss Post</a>
|
2012-04-16 09:28:57 +02:00
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|