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

Admin Dashboard

System overview and management

Total Users

{{ total_users }}

Total Sets

{{ total_sets }}

MOC Builds

{{ total_mocs }}

Instructions

{{ total_instructions }}

{{ total_storage_mb }} MB
Recent Users
View All
{% if recent_users %}
{% for user in recent_users %} {% endfor %}
Username Email Joined Admin
{{ user.username }} {{ user.email }} {{ user.created_at.strftime('%Y-%m-%d') }} {% if user.is_admin %} Admin {% else %} User {% endif %}
{% else %}

No users yet

{% endif %}
Top Contributors
{% if top_contributors %}
{% for user, count in top_contributors %} {% endfor %}
User Sets Added
{{ user.username }} {{ count }}
{% else %}

No data yet

{% endif %}
Popular Themes
{% if theme_stats %} {% for theme, count in theme_stats %}
{{ theme }} {{ count }}
{% set percentage = (count / total_sets * 100) | int %}
{{ percentage }}%
{% endfor %} {% else %}

No theme data yet

{% endif %}
Recently Added Sets
View All
{% if recent_sets %} {% else %}

No sets yet

{% endif %}
{% endblock %}