{% extends request.is_appadmin|yesno:"app_admin/base.html,app_kit/base.html" %} {% load i18n static template_content_tags %} {% block extra_style %} {% endblock %} {% block header %}

{{ app.name }}

{% endblock %} {% block content %}

{{ app.name }} {% trans 'TemplateContent' %}


{% block subcontent %}

{% trans 'Navigations' %}

{% if navigations %}
{% for navigation in navigations %} {% endfor %}
{% else %} {% trans 'You do not have any navigations for this app yet.' %} {% endif %}

{% trans 'Pages' %}

{% if localized_template_contents %}
{% for localized_template_content in localized_template_contents %} {% with template_content=localized_template_content.template_content %}
{% include 'template_content/template_content_list_entry.html' %}
{% endwith %} {% endfor %}
{% else %} {% trans 'You do not have any online pages for this app yet.' %} {% endif %}
{% if required_offline_contents %}

{% trans 'Frontend requirements' %}

{% for content in required_offline_contents %} {% if content.template_content %} {% get_locale content.template_content app.primary_language as localized_template_content %} {% with template_content=content.template_content %}
{% include 'template_content/template_content_list_entry.html' %}
{% endwith %} {% else %}
{{ content.assignment }}
{{ content.assignment|title }}
{% trans 'missing' %}

{% endif %} {% endfor %}
{% endif %} {% endblock %}
{% endblock %} {% block extra_script %}{% endblock %}