{% extends "paxalia/base.html" %} {% load static i18n %} {% block title %}{% trans "Models" %} · {% trans "Paxalia Admin" %}{% endblock %} {% block page_title %}{% trans "Models" %}{% endblock %} {% block page_subtitle %}{% trans "Registered Django models and their available administrative capabilities" %}{% endblock %} {% block extra_css %}{% endblock %} {% block dashboard_content %}
{% if configuration_issues %}
{% trans "Configuration" %}

{% trans "Admin configuration needs attention" %}

{{ configuration_issues|length }} {% trans "issue(s)" %}
{% for issue in configuration_issues|slice:":6" %}
{{ issue.level|upper }}{{ issue.message }}
{% endfor %}
{% endif %}
{% trans "Registry" %}

{% trans "Find a model" %}

{% trans "Search by app, model, or capability. App groups stay compact until you need them." %}

{{ model_count }} {% trans "models" %}{% trans "Overview" %}
{% for app in app_cards %}
{{ app.app_label }}

{{ app.app_verbose_name }}

{{ app.definitions|length }}
{% empty %}

{% trans "No models are available" %}

{% trans "Register models with Django's admin.site to make them available in Paxalia Admin." %}

{% endfor %}
{% endblock %} {% block page_scripts %}{% endblock %}