{% extends "base.html" %} {% block title %}Dashboard — BashyOverlay{% endblock %} {% block content %}

Dashboard

Welcome, {{ user.twitch_display_name }}

EventSub: {% if eventsub_connected %}connected{% else %}disconnected{% endif %} {% if not eventsub_connected %}
{% endif %}

Recent activity

{% if logs %}
{% for log in logs %} {% endfor %}
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 }}
{% else %}

No activity yet. Events will appear here as they come in.

{% endif %}
{% endblock %}