{% extends "template.html" %} {% block content %}

Tableau de bord

Bienvenue sur l'interface d'administration de Mamie Henriette.

🔌 Services

🤖
Discord {{ 'Connecté' if stats.discord_connected else 'Déconnecté' }} {% if stats.discord_connected and stats.discord_bot_name %} {{ stats.discord_bot_name }} {% endif %}
📺
Twitch {{ 'Connecté' if stats.twitch_connected else 'Déconnecté' }} {% if stats.twitch_connected and stats.twitch_channel %} #{{ stats.twitch_channel }} {% endif %}
{% if stats.discord_connected %}

📊 Statistiques Discord

🏠
Serveurs {{ stats.discord_guilds }}
👥
Membres {{ stats.discord_members }}
💬
Salons {{ stats.discord_channels }}

📢 Envoyer une annonce

{% endif %}

⚡ Fonctionnalités

{% for cog_name, enabled in stats.cogs_enabled.items() %}
{{ '✅' if enabled else '❌' }} {{ cog_name }}
{% else %}

Aucune information disponible. Le bot Discord n'est peut-être pas encore connecté.

{% endfor %}
{% if stats.last_update %}

Dernière mise à jour : {{ stats.last_update.strftime('%d/%m/%Y à %H:%M:%S') }}

{% endif %} {% endblock %}