{% extends "base.html" %} {% block title %}{{ title }}{% endblock %} {% block body %}

Dashboard

{% for model_name, count in stats.items() %}

{{ model_name }}

{{ count }}

{% endfor %}

Welcome to {{ settings.APP_NAME }} Admin

Use the navigation menu on the left to manage your application's data. Select a model to view and edit records.

Quick Actions

{% for item in menu_items %} {% if item.url != '/admin/' %} Add {{ item.name|replace('s', '') }} {% endif %} {% endfor %}
{% endblock %}