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.
Code Information{% if config.show_section_ids %}[code_info]{% endif %}
-
{% if versions.git_commit %}
-
Version:
{{ versions.git_commit|slice:":7" }}({{ versions.git_commit }})
{% endif %}
{% if versions.deployment_date %}
- Deployed: {{ versions.deployment_date|naturaltime }} ({{ versions.deployment_date|date:"Y-m-d H:i:s T" }}) {% endif %}
Software Version Information{% if config.show_section_ids %}[software_versions]{% endif %}
-
{% if versions.django %}
- Django Version: {{ versions.django }} (link to latest version info) {% endif %} {% if versions.python %}
- Python Version: {{ versions.python }} (link to latest version info) {% endif %} {% if versions.database %}
- PostgreSQL Database Version: {{ versions.database }} (link to latest version info) {% endif %} {% if versions.celery %}
- Celery Version: {{ versions.celery }} (link to latest version info) {% endif %} {% if versions.redis %}
- Redis Version: {{ versions.redis }} (link to latest version info) {% endif %}
Cache Statistics{% if config.show_section_ids %}[cache_stats]{% endif %}
-
{% if cache_stats.backend %}
- Cache Backend: {{ cache_stats.backend }} {% if cache_stats.backend_note %} ({{ cache_stats.backend_note }}) {% endif %} {% endif %} {% if cache_stats.total_keys %}
- Total Cache Keys: {{ cache_stats.total_keys|intcomma }} {% endif %} {% if cache_stats.used_memory %}
- Used Memory: {{ cache_stats.used_memory }} {% if cache_stats.max_memory and cache_stats.max_memory != '0B' %} / {{ cache_stats.max_memory }} {% endif %} {% endif %} {% if cache_stats.redis_version %}
- Redis Server Version: {{ cache_stats.redis_version }} {% endif %} {% if cache_stats.connected_clients %}
- Connected Clients: {{ cache_stats.connected_clients }} {% endif %} {% if cache_stats.uptime_days %}
- Redis Uptime: {{ cache_stats.uptime_days }} days {% endif %} {% if cache_stats.error %}
- Error: {{ cache_stats.error }} {% endif %}
Third Party Apps{% if config.show_section_ids %}[third_party_apps]{% endif %}
These are third-party Django apps installed via INSTALLED_APPS that are used by this app.
{{ info.version }}
{% if info.homepage %}
[docs]
{% endif %}
{{ app }}{% endfor %}
Third Party Integrations{% if config.show_section_ids %}[third_party_integrations]{% endif %}
These are Python packages that don't require INSTALLED_APPS registration but may be actively used by your application.
Important Integrations
{% for integration in important_integrations %}{{ integration.version }}
{% if integration.homepage %}
[docs]
{% endif %}