{% extends "base.html" %} {% block title %}Admin Panel - {{ brand_name }}{% endblock %} {% block header_actions %} {# No specific header actions needed for the admin page #} {% endblock %} {% block main_content %}

Admin Panel

Manage system settings and user accounts.

{# System Settings #} {# System Actions #} {# User Management #} {# Containers #} {# Backups #} {# Git Policy & Limits #} {# SMTP Settings #} {# Credits Settings #} {# User Reports #} {# Stripe Settings #} {# Profiler β€” only when enabled (see System Settings) #} {% if settings.get('profiler_enabled', '0') == '1' %} {% endif %}
{% endblock %} {% block portals %} {# Pending Settings Changes Bar – in portals so it’s at top-level DOM (avoids nested overflow/transform issues) #} {% include "admin_modals/edit_user_modal.html" %} {% include "admin_modals/trusted_ips_modal.html" %} {% include "admin_modals/sys_confirm_modal.html" %} {% include "admin_modals/review_changes_modal.html" %} {% include "admin_modals/system_settings_modal.html" %} {% include "admin_modals/system_actions_modal.html" %} {% include "admin_modals/backups_modal.html" %} {% include "admin_modals/docker_config_modal.html" %} {% include "admin_modals/git_policy_modal.html" %} {% include "admin_modals/user_management_modal.html" %} {% include "admin_modals/smtp_settings_modal.html" %} {% include "admin_modals/credits_settings_modal.html" %} {% include "admin_modals/stripe_settings_modal.html" %} {% include "admin_modals/manage_subscription_modal.html" %} {% include "admin_modals/user_reports_modal.html" %} {% if settings.get('profiler_enabled', '0') == '1' %} {% include "admin_modals/profiler_modal.html" %} {% endif %} {% endblock %} {% block scripts %} {% endblock %}