{% extends 'material_base.html' %} {% block title %}Reports administration page{% endblock %} {% block description %}Reports administration page of the AYTA system{% endblock %} {% block content %}

Reports administration page

Report options
All reports
{% if reports is not defined %}

No reports!

{% else %} {% for report in reports %} {% endfor %}
Actions _id videoId status reason reporting_time closing_time
{{ report.get('_id') }} {{ report.get('videoId') }} {{ report.get('status') }} {{ report.get('reason') }} {{ report.get('reporting_time') }} {{ report.get('closing_time') }}
{% endif %}
{% endblock %}