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

Dashboard

Welcome back, {{ user.username }}

{% if model_cards %}
{% for card in model_cards %}

{{ card.app_label | replace("_", " ") | title }}

{{ card.verbose_name_plural | title }}

{{ card.count }}

{% endfor %}
{% else %}

📦

No models registered

Add an admin.py to your app and call site.register(MyModel).

{% endif %} {% endblock %}