{% extends 'base.html' %} {% block content %}

Logs

Errores capturados por acciones del sistema e integraciones externas.

{% for item in logs %}
{{ item.error_type }} · {{ item.function_name }}
{{ item.created_at.strftime('%d/%m/%Y %H:%M:%S') }} · {{ item.route or 'sin ruta' }} · {{ item.actor_email or 'system' }}
Error
{{ item.message }}
{% if item.extra %}
Contexto: {{ item.extra }}
{% endif %} {% if item.stacktrace %}
Ver stacktrace
{{ item.stacktrace }}
{% endif %}
{% else %}
No hay errores registrados.
{% endfor %}
{% if pagination.pages > 1 %}
{% endif %}
{% endblock %}