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

Dashboard

Local: {{ local_time }} {{ timezone }}
{% if bot_connected %}
Bot Engine: Telegram User Client is active and monitoring incoming messages. {% if profile %} (Logged in as {{ profile.first_name }} {% if profile.username %}@{{ profile.username }}{% endif %}) {% endif %}
Connected
{% else %}
Bot Engine: Telegram Client is offline. Auto-reply messages will not be delivered.
{% endif %}
Today's Messages

{{ messages_today }}

Total incoming messages today

Today's Replies

{{ replies_today }}

Auto replies dispatched today

Total Users

{{ total_users }}

Unique users interacted

Total Replies

{{ total_replies }}

Total auto replies sent all-time

Weekly Analytics
System Health
CPU Usage {{ cpu_usage }}%
Memory (RAM) {{ ram_usage }}%
Storage Disk {{ storage_usage }}%

Database Status SQLite Active
Sessions Status Healthy
Recent Activity
View All Logs
{% if recent_logs %} {% for log in recent_logs %} {% endfor %} {% else %} {% endif %}
Time Name / User ID Original Message Reply Dispatch Status
{{ log.timestamp }}
{{ log.full_name }}
{% if log.username %}@{{ log.username }}{% else %}ID: {{ log.user_id }}{% endif %}
{{ 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 auto-reply events recorded yet.
{% endblock %} {% block extra_js %} {% endblock %}