{% extends 'layouts/base.html' %} {% load static %} {% load i18n %} {% block title %} {% trans "Logs de Moderação" %} {% endblock title %} {% block content %}
| {% trans "Data/Hora" %} | {% trans "Ação" %} | {% trans "Moderador" %} | {% trans "Alvo" %} | {% trans "Descrição" %} | {% trans "IP" %} | {% trans "Detalhes" %} |
|---|---|---|---|---|---|---|
|
{{ log.created_at|date:"d/m/Y" }}
{{ log.created_at|date:"H:i:s" }} |
{{ log.get_action_type_display }} |
{% if log.moderator %}
{% if log.moderator.avatar %}
{% else %}
{% trans "Sistema" %}
{% endif %}
|
{% if log.target_type == 'post' %}
{% elif log.target_type == 'comment' %}
{% elif log.target_type == 'user' %}
{% elif log.target_type == 'report' %}
{% else %}
{% endif %}
{{ log.get_target_type_display }}
ID: {{ log.target_id }}
|
{{ log.description }}
|
{% if log.ip_address %} {{ log.ip_address }} {% else %} - {% endif %} | {% if log.details %} {% else %} - {% endif %} |
{% trans "Não há logs que correspondam aos filtros aplicados." %}