{% extends 'admin/base_site.html' %} {% load i18n admin_urls static admin_list %} {% if not is_popup %} {% block breadcrumbs %} {% endblock %} {% endif %} {% block content %}

Service version info

{% for url, info in version_info.items %} {% endfor %}
host version info
{{ url }} {{ info }}

Settings

{% for item in site_settings %} {% endfor %}
key value
{{ item.key }} {{ item.value }}

Table Counts

{% for item in table_counts %} {% endfor %}
table number of rows time to count rows (s)
{{ item.key }} {{ item.value }} {{ item.timing }}

Django db status

{% if django_error %}

{{ django_error }}

{% else %} {% for row in django_db_data %} {% endfor %}
id app name applied
{{ row.id }} {{ row.app }} {{ row.name }} {{ row.applied }}
{% endif %}
{% endblock %}