{% extends 'layouts/base.html' %} {% load static %} {% load i18n %} {% block title %} {% trans "Painel de Moderação" %} {% endblock title %} {% block content %}
{% trans "Total de Denúncias" %}
{{ total_reports }}
{% trans "Pendentes" %}
{{ pending_reports }}
{% trans "Urgentes" %}
{{ urgent_reports }}
{% trans "Resolvidas Hoje" %}
{{ resolved_today }}
{% trans "Denúncias Recentes" %}
{% trans "Ver Todas" %}
{% if recent_reports %}
{% for report in recent_reports %} {% endfor %}
{% trans "Tipo" %} {% trans "Prioridade" %} {% trans "Status" %} {% trans "Data" %}
{{ report.get_report_type_display }} {{ report.get_priority_display }} {{ report.get_status_display }} {{ report.created_at|date:"d/m H:i" }}
{% else %}

{% trans "Nenhuma denúncia recente" %}

{% endif %}
{% trans "Ações Recentes" %}
{% trans "Ver Logs" %}
{% if recent_actions %}
{% for action in recent_actions %} {% endfor %}
{% trans "Ação" %} {% trans "Moderador" %} {% trans "Data" %}
{{ action.get_action_type_display }} {{ action.moderator.username }} {{ action.created_at|date:"d/m H:i" }}
{% else %}

{% trans "Nenhuma ação recente" %}

{% endif %}
{% trans "Atividade dos Últimos 30 Dias" %}
{% trans "Informações" %}
{% trans "Filtros Ativos" %}

{{ active_filters }} {% trans "filtros em funcionamento" %}

{% trans "Logs Recentes" %}

{{ recent_logs.count }} {% trans "ações registradas hoje" %}


{% endblock content %}