{% extends "admin/base_site.html" %} {% load i18n forge_icons %} {% block content %}
{% include "admin/includes/forge_sidebar.html" %}
{% include "admin/includes/forge_topbar.html" with subtitle="Overview and recent activity" %}
{% for card in stats %}

{% forge_icon card.icon "h-3.5 w-3.5" %} {{ card.label }}

{% if card.trend %} {{ card.trend }} {% endif %}

{{ card.value }}

{% if card.hint %}

{{ card.hint }}

{% elif card.trend %}

Trend updated from current data

{% else %}

Updated just now

{% endif %}
{% endfor %}

{% forge_icon "users" "h-4 w-4 text-slate-500" %} Recent users

{% if recent_users_url %} View all {% endif %}
    {% for user_obj in recent_users %}
  • {{ user_obj.get_username }} {{ user_obj.date_joined|date:"M j, Y" }}
  • {% empty %}
  • No users yet.
  • {% endfor %}

{% forge_icon "layers" "h-4 w-4 text-slate-500" %} Model groups

    {% for item in model_counts %}
  • {{ item.app_label|forge_labelize }} {{ item.total }}
  • {% empty %}
  • No model metadata found.
  • {% endfor %}

{% forge_icon "activity" "h-4 w-4 text-slate-500" %} Recent activity

    {% for action in recent_actions %}
  • {{ action.user }} {{ action.action_label|lower }} {{ action.object_repr }}

    {{ action.content_type|capfirst }}

    {{ action.action_time|date:"M j, g:i a" }}
  • {% empty %}
  • No admin actions recorded yet.
  • {% endfor %}
{% if dashboard_cards %} {% for card in dashboard_cards %} {% if card.key == "system-health" %}
{{ card.html|safe }}
{% endif %} {% endfor %} {% endif %}
{% if dashboard_cards %}
{% for card in dashboard_cards %} {% if card.key != "system-health" %}
{{ card.html|safe }}
{% endif %} {% endfor %}
{% endif %}
{% endblock %}