{% extends "allianceauth/base-bs5.html" %} {% load static %} {% load i18n %} {% block page_title %}{% translate "Dashboard" %}{% endblock %} {% block header_nav_brand %} {% translate "Dashboard" %} {% endblock %} {% block extra_css %} {{ block.super }} {% if AA_CUSTOMIZER.dashboard_css_url %} {% endif %} {% if AA_CUSTOMIZER.dashboard_css %} {% endif %} {% if AA_CUSTOMIZER.dashboard_head_html %}{{ AA_CUSTOMIZER.dashboard_head_html|safe }}{% endif %} {% if request.user.is_superuser or request.user.is_staff %} {% if AA_CUSTOMIZER.superuser_dashboard_css_url %} {% endif %} {% if AA_CUSTOMIZER.superuser_dashboard_css %} {% endif %} {% if AA_CUSTOMIZER.superuser_dashboard_head_html %}{{ AA_CUSTOMIZER.superuser_dashboard_head_html|safe }}{% endif %} {% endif %} {% endblock extra_css %} {% block content %} {% if request.user.is_superuser or request.user.is_staff %} {% if AA_CUSTOMIZER.superuser_dashboard_body_html %} {{ AA_CUSTOMIZER.superuser_dashboard_body_html|safe }} {% endif %} {% endif %}
{% for dash in views %} {{ dash | safe }} {% endfor %}
{% if AA_CUSTOMIZER.dashboard_body_html %}{{ AA_CUSTOMIZER.dashboard_body_html|safe }}{% endif %} {% endblock %}