{% extends "layout.html" %} {% block title %}Dashboard | Aura Admin{% endblock %} {% block breadcrumb %}Dashboard{% endblock %} {% block content %}

Welcome to Aura Admin

A highly customizable, blazing-fast, and async-first administration control panel dynamically powered by your Aura models.

Registered Database Entities

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

{{ model_name }}

ORM Database Entity

{{ count }} records
Manage
{% endfor %}
{% else %}

No models registered yet

Register your ORM models dynamically to view them in the dashboard by calling register_model(model) or decorating them with @register(model).

{% endif %}
{% endblock %}