{% extends "base.html" %} {% block title %}Dashboard — Admin{% endblock %} {% block content %} {% if stat_cards %}
{% for stat in stat_cards %}
{{ stat.title }}
{{ stat.count }}
{% if stat.change is defined %}
{{ stat.change }}
{% endif %}
{% endfor %}
{% endif %} {% if recent_audit %}

Recent Activity

View all
{% for entry in recent_audit %}
{{ entry.model_name }} #{{ entry.object_id }} {{ entry.action }}
{{ entry.timestamp.strftime('%H:%M') }}
{% endfor %}
{% endif %}

Quick Actions

{% for model in registered_models %} {{ model.verbose_name }} {% endfor %}
{% if show_charts %}

Charts

Charts coming soon.

{% endif %} {% endblock %}