{% extends "base.html" %} {% block title %}Voice Audit-Log{% endblock %} {% block content %}

🎤 Voice Audit-Log

Alle per Sprachsteuerung ausgeführten Aktionen — letzte 200 Einträge.

{% if not entries %}
Noch keine Voice-Aktionen protokolliert.
{% else %}
{% for e in entries %} {% endfor %}
Zeit User Gesprochen Intent Ergebnis Status
{{ e.ts[:19].replace('T', ' ') }} {% if e.user_id %}#{{ e.user_id }}{% else %}—{% endif %} „{{ e.raw_text or '—' }}" {{ e.intent }} {{ e.response or '—' }} {% if e.success %} OK {% else %} FEHL {% endif %}
{% endif %}
← Zurück zur Voice-Hilfe
{% endblock %}