{% 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
| host |
version info |
{% for url, info in version_info.items %}
| {{ url }} |
{{ info }} |
{% endfor %}
Settings
| key |
value |
{% for item in site_settings %}
| {{ item.key }} |
{{ item.value }} |
{% endfor %}
Table Counts
| table |
number of rows |
time to count rows (s) |
{% for item in table_counts %}
| {{ item.key }} |
{{ item.value }} |
{{ item.timing }} |
{% endfor %}
Django db status
{% if django_error %}
{{ django_error }}
{% else %}
| id |
app |
name |
applied |
{% for row in django_db_data %}
| {{ row.id }} |
{{ row.app }} |
{{ row.name }} |
{{ row.applied }} |
{% endfor %}
{% endif %}
{% endblock %}