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

Dashboard

👥 Players

{{ total_players or 0 }}

View Players

📁 Groups

{{ total_groups or 0 }}

View Groups

🎬 Content

{{ total_content or 0 }}

View Content

💾 Storage

{{ storage_mb or 0 }} MB

Upload Content

Quick Actions

➕ Add Player ➕ Create Group ⬆️ Upload Content {% if current_user.is_admin %} ⚙️ Admin Panel {% endif %}
{% if recent_logs %}

Recent Activity

{% for log in recent_logs %}
[{{ log.level.upper() }}] {{ log.message }} {{ log.timestamp.strftime('%Y-%m-%d %H:%M:%S') }}
{% endfor %}
{% endif %}

System Status

✅ All systems operational

🔄 Blueprint architecture active

⚡ Flask {{ config.get('FLASK_VERSION', '3.1.0') }}

{% endblock %}