{% extends "django_schema_browser/base.html" %} {% load django_schema_browser_i18n %} {% block title %}{% btrans "[Project applications]" %}{% endblock title %} {% block content %}

{% btrans "[Project applications]" %}

{% btrans "[All applications found in the current project directory.]" %}

{% if apps %} {% for app in apps %} {% endfor %}
{% btrans "[Application]" %} {% btrans "[Python module]" %} {% btrans "[Description]" %} {% btrans "[Models]" %}
{{ app.name }} {{ app.module }} {{ app.description }} {{ app.models_count }}
{% else %}

{% btrans "[No local application detected.]" %}

{% endif %} {% endblock content %}