The version of vichan running on lainchan.org
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

27 行
1.1KB

  1. <div class="report">
  2. <hr>
  3. {% trans 'Board' %}: <a href="?/{{ report.board }}/{{ config.file_index }}">{{ config.board_abbreviation|sprintf(report.board) }}</a>
  4. <br>
  5. {% trans 'Reason' %}: {{ report.reason }}
  6. <br>
  7. {% trans 'Report date' %}: {{ report.time|date(config.post_date) }}
  8. <br>
  9. {% if mod|hasPermission(config.mod.show_ip, report.board) %}
  10. {% trans 'Reported by' %}: <a href="?/IP/{{ report.ip }}">{{ report.ip }}</a>
  11. <br>
  12. {% endif %}
  13. {% if mod|hasPermission(config.mod.report_dismiss, report.board) or mod|hasPermission(config.mod.report_dismiss_ip, report.board) %}
  14. <hr>
  15. {% if mod|hasPermission(config.mod.report_dismiss, report.board) %}
  16. <a title="{% trans 'Discard abuse report' %}" href="?/reports/{{ report.id }}/dismiss/{{ token }}">Dismiss</a>
  17. {% endif %}
  18. {% if mod|hasPermission(config.mod.report_dismiss_ip, report.board) %}
  19. {% if mod|hasPermission(config.mod.report_dismiss, report.board) %}
  20. |
  21. {% endif %}
  22. <a title="{% trans 'Discard all abuse reports by this IP address' %}" href="?/reports/{{ report.id }}/dismissall/{{ token_all }}">Dismiss+</a>
  23. {% endif %}
  24. {% endif %}
  25. </div>