{% extends "base.html" %} {% block title %}Dashboard - Bot Master{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{{ stats.total_bots }}
Total Bots
{{ stats.online_bots }}
Online
{{ stats.total_guilds }}
Servers
{{ stats.total_commands }}
Commands
{% if bots %}

Your Bots

{% for bot in bots %}
{{ bot.name }}
{{ bot.status|capitalize }}
{% if bot.description %}
{{ bot.description[:100] }}{% if bot.description|length > 100 %}...{% endif %}
{% endif %}
{{ bot.guild_count or 0 }}
Servers
{{ bot.command_count or 0 }}
Commands
{{ (bot.uptime_seconds // 3600) if bot.uptime_seconds else 0 }}h
Uptime
View Details
{% endfor %}
{% else %}

No Bots Added Yet

Start by adding your first Discord bot to manage it from this dashboard.

Add Your First Bot
{% endif %} {% endblock %} {% block extra_js %} {% endblock %}