{% extends "base.html" %} {% block title %}Dashboard — KORM Admin{% endblock %} {% block content %}

Dashboard

{{ models|length }} model(s)
{% for m in models %}
{{ m.name }} {{ m.count }}
List Create
Table: {{ m.table }}
Columns: {{ m.columns|length }}
{% if m.relations %}
Relations: {{ m.relations|length }}
{% endif %}
{% endfor %}
{% endblock %}