{% extends 'admin/layouts/base_dashboard.html' %} {% load unfold %} {% block tabs %} {% endblock %} {% block tab_content %}
{% if overview_section %} {{ overview_section|safe }} {% else %} {% include 'admin/snippets/tabs/overview_tab.html' %} {% endif %}
{% if zones_section %} {{ zones_section|safe }} {% else %} {% include 'admin/snippets/zones/zones_table.html' %} {% endif %}
{% if users_section %} {{ users_section|safe }} {% else %} {% include 'admin/snippets/tabs/users_tab.html' %} {% endif %}
{% if system_section %} {{ system_section|safe }} {% else %}

System Management

{% include 'admin/snippets/components/system_health.html' %} {% include 'admin/snippets/components/system_metrics.html' %} {% include 'admin/snippets/components/activity_tracker.html' %}
{% endif %}
{% if stats_section %} {{ stats_section|safe }} {% else %} {% include 'admin/snippets/tabs/stats_tab.html' %} {% endif %}
{% if app_stats_section %} {{ app_stats_section|safe }} {% else %} {% include 'admin/snippets/tabs/app_stats_tab.html' with stats_groups=stats_groups %} {% endif %}
{% if commands_section %} {{ commands_section|safe }} {% else %} {% include 'admin/snippets/tabs/commands_tab.html' %} {% endif %}
{% if documentation_section %} {{ documentation_section|safe }} {% else %} {% include 'admin/snippets/tabs/documentation_tab.html' %} {% endif %}
{% endblock %}