mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-24 07:30:10 +01:00
27 lines
1.0 KiB
HTML
27 lines
1.0 KiB
HTML
|
<div class="report">
|
||
|
<hr>
|
||
|
Board: <a href="?/{{ report.board }}/{{ config.file_index }}">{{ config.board_abbreviation|sprintf(report.board) }}</a>
|
||
|
<br>
|
||
|
Reason: {{ report.reason }}
|
||
|
<br>
|
||
|
Report date: {{ report.time|date(config.post_date) }}
|
||
|
<br>
|
||
|
{% if mod|hasPermission(config.mod.show_ip, report.board) %}
|
||
|
Reported by: <a href="?/IP/{{ report.ip }}">{{ report.ip }}</a>
|
||
|
<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) %}
|
||
|
<a title="Discard abuse report" href="?/reports/{{ report.id }}/dismiss">Dismiss</a>
|
||
|
{% endif %}
|
||
|
{% if mod|hasPermission(config.mod.report_dismiss_ip, report.board) %}
|
||
|
{% if mod|hasPermission(config.mod.report_dismiss, report.board) %}
|
||
|
|
|
||
|
{% endif %}
|
||
|
<a title="Discard all abuse reports by this IP address" href="?/reports/{{ report.id }}/dismissall">Dismiss+</a>
|
||
|
{% endif %}
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
|