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

{{ app.name }}

{% endblock %} {% block content %}

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


{% block subcontent %}

{% trans 'Pages' %}

{% if pages %}
{% for template_content in pages %}
{% include 'online_content/template_content_list_entry.html' %}
{% endfor %}
{% else %} {% trans 'You do not have any online pages for this app yet.' %} {% endif %}

{% trans 'Features' %}

{% if features %}
{% for template_content in features %}
{% include 'online_content/template_content_list_entry.html' %}
{% endfor %}
{% else %} {% trans 'You do not have any online feature content for this app yet.' %} {% endif %}
{% endblock %}
{% endblock %} {% block extra_script %}{% endblock %}