{% extends "app_manager/app_install_base.html" %} {% load bootstrap_tags staticfiles cartoview_tags base_tags %} {% load i18n %} {% block title %} {{ block.super }} - {% trans "Applications" %} {% endblock %} {% block body_class %}appinstances appinstances-list explore{% endblock %} {% block head %} {{ block.super }} {% endblock %} {% block body %}
{% for app in Apps %} {% if not app.config.pending and app.config.active and app.name != "cartoview_attachment_manager" %}

{{ app.title }}

{% if app.description %} {% with truncated_desc=app.description|truncatewords:9 %} {{ truncated_desc }} {% if app.description|length > truncated_desc|length %} {% trans "More" %} {% endif %} {% endwith %} {% else %} {% trans "No Description Provided" %} {% endif %}

{% if app.single_instance %} {% else %} {% comment %} REMOVE THE FOLLOWING CONDITION AFTER FIXING __init__.py OF ALL MULTIPLE INSTANCE APPS {% endcomment %} {% if not user.is_authenticated or not request.user.is_staff %} {% endif %} {% endif %} {% if app.anonymous_urls %} {% for key, values in app.anonymous_urls.items %} {% url key as the_url %} {% if the_url %}   {% endif %} {% endfor %} {% endif %} {% if user.user.is_authenticated and app.logged_in_urls %} {% for key, values in app.logged_in_urls.items %} {% url key as the_url %} {% if the_url %}   {% endif %} {% endfor %} {% endif %} {% if user.is_staff and app.admin_urls %} {% for key, values in app.admin_urls.items %} {% url key as the_url %} {% if the_url %}   {% endif %} {% endfor %} {% endif %}
{% endif %} {# {% empty %}#} {#
#} {#

{% trans "No Apps Installed" %}

#} {#
#} {% endfor %} {% with facet_type='geoapps' %} {% facets as facets %}

{% trans 'Geonode Dashboard' %}

{% trans "Geonode Dashboard" %}

{% trans 'GeoStory' %}

{% trans "GeoStory" %}

{% endwith %}
{% endblock %} {% block extra_script %} {% endblock %}