{% extends "admin/base.html" %} {% block title %}Dashboard{% endblock %} {% block page_title %}Dashboard{% endblock %} {% block content %}

{{ apps | map(attribute='models') | map('length') | sum if apps else 0 }}

Registered Models

{{ apps | length }}

Applications

{{ errors.error_count if errors else 0 }}

Errors

{{ errors.warning_count if errors else 0 }}

Warnings

{% if errors and (errors.has_errors or errors.has_warnings) %}

System Status

{% for error in errors.errors %}
{% if error.level == 'error' %} {% elif error.level == 'warning' %} {% else %} {% endif %}

{% if error.model %}{{ error.model }} — {% endif %}{{ error.title }}

{{ error.detail }}

{% if error.hint %}

{{ error.hint }}

{% endif %} {% if debug and error.source %}
Show traceback
{{ error.source }}
{% endif %}
{% endfor %}
{% endif %}

Quick Actions

{% for app in apps %} {% for model in app.models %} {% if 'add' in model.permissions and loop.index0 < 5 %} Add {{ model.display_name }} {% endif %} {% endfor %} {% endfor %}

Recent Activity

No recent activity

{% block extra_js %} {% endblock %} {% endblock %}