{% extends "admin/dj_control_room/base.html" %} {% load i18n dcr_icons %} {% block panel_content %}
{# ------------------------------------------------------------------ #} {# Page header #} {# ------------------------------------------------------------------ #}

{% trans "Django Control Room" %}

{% trans "Select a panel to view monitoring tools." %}

{# ------------------------------------------------------------------ #} {# Featured panels #} {# ------------------------------------------------------------------ #}

{% trans "Featured Panels" %}

{% for panel in featured_panels %}
{% dcr_icon panel.icon "dcr-panel-card__icon" %}
{% if panel.configured %} {% trans "INSTALLED" %} {% elif panel.installed %} {% trans "SETUP" %} {% elif panel.coming_soon %} {% trans "COMING SOON" %} {% else %} {% trans "NOT INSTALLED" %} {% endif %}

{{ panel.name }}

{{ panel.description }}

{% endfor %}
{# ------------------------------------------------------------------ #} {# Community panels #} {# ------------------------------------------------------------------ #} {% if has_community_panels %}

{% trans "Community Panels" %}

{% for panel in community_panels %}
{% dcr_icon panel.icon "dcr-panel-card__icon" %}
{% if panel.configured %} {% trans "INSTALLED" %} {% else %} {% trans "NOT INSTALLED" %} {% endif %}

{{ panel.name }}

{{ panel.description }}

{% endfor %}
{% endif %} {# ------------------------------------------------------------------ #} {# Footer — More panels / Build your own / Framework #} {# ------------------------------------------------------------------ #}

{% trans "More panels on the way" %}

{% trans "We're building more tools to bring full observability to your Django admin. Follow our progress on GitHub." %}

{% trans "Build your own panel" %}

{% trans "Django Control Room is built to be extended. Use our cookiecutter template to scaffold a fully structured panel plugin in seconds." %}

{% if core_panel %}
{% trans "Framework" %} {{ core_panel.name }} {{ core_panel.description }} {% if core_panel.configured %} {% trans "Design system" %} → {% elif core_panel.docs_url %} {% trans "Docs" %} ↗ {% endif %}
{% endif %} {% endblock %}