{% extends "base.html" %}
{% block title %}admin: report #{{ report.id }} - irc.now{% endblock %}
{% block banner %}{% include "partials/announcement.html" %}{% endblock %}
{% block content %}
report #{{ report.id }}
- status
- {{ report.status }}
- type
- {{ report.content_type }}
- content id
- {{ report.content_id }}
- url
- {{ report.content_url }}
- reason
- {{ report.reason }}
- description
- {{ report.description }}
- reporter email
- {{ report.reporter_email }}
- created
- {{ report.created_at }}
{% if !report.resolution.is_empty() %}
- resolution
- {{ report.resolution }}
{% endif %}
{% if report.content_type == "image" %}
{% endif %}
{% if report.status == "pending" %}
{% endif %}
← back to reports
{% endblock %}