21 lines
561 B
HTML
21 lines
561 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Admin Panel - DigiServer v2{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Admin Panel</h1>
|
|
<div class="card">
|
|
<h2>System Overview</h2>
|
|
<p>Total Users: {{ total_users or 0 }}</p>
|
|
<p>Total Players: {{ total_players or 0 }}</p>
|
|
<p>Total Groups: {{ total_groups or 0 }}</p>
|
|
<p>Total Content: {{ total_content or 0 }}</p>
|
|
<p>Storage Used: {{ storage_mb or 0 }} MB</p>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<h2>User Management</h2>
|
|
<p>User management features - Template in progress</p>
|
|
</div>
|
|
{% endblock %}
|