{% extends "layout.html" %} {% block title %}Reports :: {{ config.SITE_NAME }}{% endblock %} {% block body %} {% from "_formhelpers.html" import render_field %}
{% for report in reports.items %} {% endfor %}
# Reported by Torrent Reason Date Action
{{ report.id }} {{ report.user.username }} {% if report.user.is_trusted %} Trusted {% endif %} {{ report.torrent.display_name }} by {{ report.torrent.user.username }} {% if g.user.is_superadmin and report.torrent.uploader_ip %} ({{ report.torrent.uploader_ip_string }}) {% endif %} {% if report.torrent.user.is_trusted %} Trusted {% endif %} {{ report.reason }} {{ report.created_time }}
{{ report_action.csrf_token }} {{ report_action.torrent(value=report.torrent.id) }} {{ report_action.report(value=report.id) }}
{{ report_action.action(class_="form-control") }}
{% endblock %}