{% extends "page.html" %} {% load static tags site_settings %} {% block title %}- Apps Library{% endblock %} {% block styles %} {{ block.super }} {{ site_globals.apps_library_css|load_custom_css|safe }} {% endblock %} {% block primary_content %}
{% if site_globals.apps_library_title %}{{ site_globals.apps_library_title }}{% else %}Apps Library{% endif %}
{% if apps.configured or apps.unconfigured %}
    {% if apps|get_tags_from_apps %}
  • All
  • {% for tag in apps|get_tags_from_apps%} {% if tag %}
  • {{ tag }}
  • {% endif %} {% endfor %} {% endif %}
{% for app in apps.configured %} {% if app.proxied %}
{% else %}
{% endif %}
{{ app.name }}{% if not app.show_in_apps_library and app.enabled %} (hidden){% elif app.show_in_apps_library and not app.enabled %} (disabled){% elif not app.show_in_apps_library and not app.enabled %} (hidden and disabled){% endif %}
{% endfor %} {% for app in apps.unconfigured %}
{{ app.name }}
{% endfor %}
{% else %}

There are no apps loaded.

{% endif %}
{% endblock %} {% block scripts %} {{ block.super }} {% endblock %}