{% extends "base.html" %} {% block title %}Actividad{% endblock %} {% block header %}Registro de Actividad{% endblock %} {% block content %}
Envíos TNS Actividad usuarios

Eventos

{{ total }} registro(s)
{% for r in rows %} {% else %} {% endfor %}
Fecha/Hora Usuario Acción Detalle IP
{{ r.created_at[:16].replace('T',' ') }} {{ r.username }} {% set a = r.accion %} {% if a == 'login' %} Login {% elif a == 'login_fallido' %} Login fallido {% elif a == 'rda_enviado' %} RDA enviado {% elif a == 'rda_masivo' %} RDA masivo {% elif a == 'rda_directo' %} RDA directo {% elif a == 'automation_run' %} Automatización {% elif a == 'contrato_creado' %} Contrato creado {% elif a == 'contrato_editado' %} Contrato editado {% elif a == 'contrato_toggle' %} Contrato toggle {% else %} {{ a }} {% endif %} {{ r.detalle }} {{ r.ip }}
No hay eventos registrados aún
{% if has_more or offset > 0 %}
{% if offset > 0 %} Anterior {% else %}{% endif %} {{ offset + 1 }}–{{ [offset + page_size, total]|min }} de {{ total }} {% if has_more %} Siguiente {% else %}{% endif %}
{% endif %}
{% endblock %}