{% extends "base.html" %}
{% block title %}Dashboard — BashyOverlay{% endblock %}
{% block content %}
Welcome, {{ user.twitch_display_name }}Dashboard
| Time | Event | User | Detail | Action taken |
|---|---|---|---|---|
| {{ log.triggered_at.strftime('%H:%M:%S') }} | {{ log.event_type }} |
{{ log.username or '—' }} | {{ log.detail or '—' }} | {{ log.action_taken or 'none configured' | safe }} |
No activity yet. Events will appear here as they come in.
{% endif %}