{% extends "base.html" %} {% block title %}Applications — AppManager{% endblock %} {% block content %} {{ render_slot('dashboard_widget', user=user) if render_slot is defined else '' }} {% if apps %}
{% for app in apps %}
{{ app.source_type }} {% if app.app_type == 'extension' %} Extension {% endif %}

{{ app.name }}

{{ app.description or "Flask application hosted under AppManager wrapper." }}

{% endfor %}
{% else %}

No Applications Available

There are currently no sub-apps installed or you do not have permission to access any installed applications.

{% if user and user.is_admin() %} Go to Admin Dashboard to Install Apps {% endif %}
{% endif %} {% endblock %}