{% extends "base.html" %} {% load static tags site_settings %} {% block title %}{{ block.super }} - {% if site_globals.apps_library_title %}{{ site_globals.apps_library_title }}{% else %}Apps{% endif %}{% endblock %} {% block styles %} {{ block.super }} {{ tethys.select2.link_tag|safe }} {{ site_globals.apps_library_css|load_custom_css|safe }} {% endblock %} {% block global_scripts %} {{ block.super }} {{ tethys.select2.script_tag|safe }} {% endblock %} {% block primary_content %} {# Push content below header #}
{% if apps.configured or apps.unconfigured %} {# Tag Search #} {% if apps|get_tags_from_apps %}
{% endif %} {# App List #}
{% for app in apps.configured %}
{% include 'tethys_apps/app_card.html' with app=app unconfigured=False %}
{% endfor %} {% for app in apps.unconfigured %}
{% include 'tethys_apps/app_card.html' with app=app unconfigured=True %}
{% endfor %}
{% else %}

There are no apps loaded.

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