{% extends 'admin/layouts/dashboard_with_tabs.html' %} {% load unfold %} {% block overview_tab %} {% if overview_section %} {{ overview_section|safe }} {% else %} {% include 'admin/snippets/tabs/overview_tab.html' %} {% endif %} {% endblock %} {% block zones_tab %} {% if zones_section %} {{ zones_section|safe }} {% else %} {% include 'admin/snippets/zones/zones_table.html' %} {% endif %} {% endblock %} {% block users_tab %} {% if users_section %} {{ users_section|safe }} {% else %} {% include 'admin/snippets/tabs/users_tab.html' %} {% endif %} {% endblock %} {% block system_tab %} {% 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 %} {% endblock %} {% block stats_tab %} {% if stats_section %} {{ stats_section|safe }} {% else %} {% include 'admin/snippets/tabs/stats_tab.html' %} {% endif %} {% endblock %} {% block app_stats_tab %} {% if app_stats_section %} {{ app_stats_section|safe }} {% else %} {% include 'admin/snippets/tabs/app_stats_tab.html' with stats_groups=stats_groups %} {% endif %} {% endblock %} {% block commands_tab %} {% if commands_section %} {{ commands_section|safe }} {% else %} {% include 'admin/snippets/tabs/commands_tab.html' %} {% endif %} {% endblock %} {% block documentation_tab %} {% if documentation_section %} {{ documentation_section|safe }} {% else %} {% include 'admin/snippets/tabs/documentation_tab.html' %} {% endif %} {% endblock %}