{% extends "admin/base_site.html" %} {% load humanize %} {% block title %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% if config.page_intro %}
{{ config.page_intro|safe }}
{% endif %} {% if config.show_dashboard_description %}

This dashboard displays version information for all critical components of your Django application, including the application code, software dependencies, database, cache, and task queue systems.

Configuration: To customize what information is shown, modify the ABOUT_CONFIG dictionary in your settings.py file. You can enable/disable version checks, add custom sections, and configure how deployment information is detected.

If you want to hide this block, set 'show_dashboard_description': False, in your ABOUT_CONFIG dictionary.

{% endif %} {% if versions.git_commit or versions.deployment_date %}

Code Information

{% endif %}

Software Version Information

{% if cache_stats %}

Cache Statistics

{% endif %} {% if versions.third_party_apps %}

Third Party Apps

These are third-party Django apps installed via INSTALLED_APPS that are used by this app.

{% for dist_name, info in versions.third_party_apps.items %}
{{ dist_name }} {{ info.version }} {% if info.homepage %} [docs] {% endif %}
Apps: {% for app in info.apps %}{{ app }}{% endfor %}
{% endfor %}
{% endif %} {% if versions.integrations %}

Third Party Integrations

These are Python packages that don't require INSTALLED_APPS registration but may be actively used by your application.

{% if important_integrations %}

Important Integrations

{% for integration in important_integrations %}
{{ integration.package_name }} {{ integration.version }} {% if integration.homepage %} [docs] {% endif %}
{% endfor %}
{% endif %} {% if other_integrations %}
Other Integrations ({{ other_integrations|length }})
{% for integration in other_integrations %}
{{ integration.package_name }} {{ integration.version }} {% if integration.homepage %} [docs] {% endif %}
{% endfor %}
{% endif %}
{% endif %} {% for section in custom_sections %}

{{ section.title }}

{{ section.content|safe }}
{% endfor %}
{% endblock %}