{% extends "admin/base_site.html" %}
{% load adminmedia admin_list i18n %}
{% if not is_popup %}
{% block breadcrumbs %}
{% endblock %}
{% endif %}
{% block content %}
{{ app_name }}
{% if reqs|length > 0 or appomatic_reqs|length > 0 %}
{% trans 'Requirements' %}:
{% if appomatic_reqs|length > 0 %}
Appomatic apps |
{% for i in appomatic_reqs %}
{{ i }} |
{% endfor %}
{% endif %}
{% if reqs|length > 0 %}
Apps |
{% for i in reqs %}
{{ i }} |
{% endfor %}
{% endif %}
{% endif %}
{% if deps|length > 0 or appomatic_deps|length > 0 %}
{% trans 'Dependant apps' %}:
{% if appomatic_deps|length > 0 %}
Appomatic apps |
{% for i in appomatic_deps %}
{{ i }} |
{% endfor %}
{% endif %}
{% if deps|length > 0 %}
Apps |
{% for i in deps %}
{{ i }} |
{% endfor %}
{% endif %}
{% endif %}
{% endblock %}