{% extends 'layouts/base.html' %} {% load static %} {% load i18n %} {% block title %} {% trans "Lista de Denúncias" %} {% endblock title %} {% block content %}
| {% trans "Tipo" %} | {% trans "Conteúdo" %} | {% trans "Denunciante" %} | {% trans "Prioridade" %} | {% trans "Status" %} | {% trans "Moderador" %} | {% trans "Data" %} | {% trans "Ações" %} | |
|---|---|---|---|---|---|---|---|---|
| {{ report.get_report_type_display }} |
{% if report.reported_post %}
{% elif report.reported_comment %}
{% elif report.reported_user %}
{% endif %}
{% if report.reported_post %}
{{ report.reported_post.content|truncatechars:50 }}
{% elif report.reported_comment %}
{{ report.reported_comment.content|truncatechars:50 }}
{% elif report.reported_user %}
{{ report.reported_user.username }}
{% endif %}
{% if report.reported_post %}
Post por {{ report.reported_post.author.username }}
{% elif report.reported_comment %}
Comentário por {{ report.reported_comment.author.username }}
{% elif report.reported_user %}
Usuário reportado
{% endif %}
|
{{ report.reporter.username }} | {{ report.get_priority_display }} | {{ report.get_status_display }} | {% if report.assigned_moderator %} {{ report.assigned_moderator.username }} {% else %} - {% endif %} | {{ report.created_at|date:"d/m/Y H:i" }} |
{% trans "Não há denúncias ativas que correspondam aos filtros aplicados." %}
| {% trans "Tipo" %} | {% trans "Conteúdo" %} | {% trans "Denunciante" %} | {% trans "Status" %} | {% trans "Moderador" %} | {% trans "Resolvida em" %} | {% trans "Ações" %} |
|---|---|---|---|---|---|---|
| {{ report.get_report_type_display }} |
{% if report.reported_post %}
{% elif report.reported_comment %}
{% elif report.reported_user %}
{% endif %}
{% if report.reported_post %}
{{ report.reported_post.content|truncatechars:40 }}
{% elif report.reported_comment %}
{{ report.reported_comment.content|truncatechars:40 }}
{% elif report.reported_user %}
{{ report.reported_user.username }}
{% endif %}
|
{{ report.reporter.username }} | {{ report.get_status_display }} | {% if report.assigned_moderator %} {{ report.assigned_moderator.username }} {% else %} - {% endif %} | {% if report.resolved_at %} {{ report.resolved_at|date:"d/m/Y H:i" }} {% else %} {{ report.updated_at|date:"d/m/Y H:i" }} {% endif %} |
{% trans "Não há denúncias resolvidas que correspondam aos filtros aplicados." %}