{% extends "base.html" %} {% block title %}Auto-Reply Logs{% endblock %} {% block content %}

Auto-Reply Logs

Browse details and audit trails of all handled messages.

Export CSV Export JSON
Reset
{% if logs %} {% for log in logs %} {% endfor %} {% else %} {% endif %}
Time User Identity Received Message Auto-Reply Sent Result Status
{{ log.timestamp }}
{{ log.full_name }}
{% if log.username %}@{{ log.username }}{% endif %} (ID: {{ log.user_id }})
{{ log.original_message or '-' }}
{{ log.reply_message or '-' }}
{% if log.status == 'Replied' %} Replied {% elif log.status.startswith('Ignored:') %} {{ log.status }} {% else %} {{ log.status }} {% endif %}
No logs match your criteria.
{% if total_pages > 1 %} {% endif %}
{% endblock %}