{% extends "app_manager/app_install_base.html" %} {% load bootstrap_tags staticfiles %} {% load i18n %} {% block title %} {{ block.super }} - {% trans "Workspace" %} {% endblock %} {% block head %} {% include "geonode/ext_header.html" %} {% include "geonode/app_header.html" %} {{ block.super }} {% endblock %} {% block body %}

Apps

{% if my_apps.all.count != 0 %} {% for app in my_apps.all|slice:":3" %}
{{ app.title }}

View

{% endfor %} {% else %}

No Apps Created

{% endif %}

Layers

{% if my_layers.all.count != 0 %} {% for layer in my_layers.all|slice:":3" %}
{{ layer.title }}

View

{% endfor %} {% else %}

No Layers Uploaded

{% endif %}

Maps

{% if my_maps.all.count != 0 %} {% for map in my_maps.all|slice:":3" %}
{{ map.title }}

View

{% endfor %} {% else %}

No Maps Created

{% endif %}

Documents

{% if documents.all.count != 0 %} {% for document in documents.all|slice:":3" %}
{{ document.title }}

View

{% endfor %} {% else %}

No Documents Created

{% endif %}

Groups

{% if groups.all.count != 0 %} {% for group in groups.all|slice:":3" %}
{{ group.title }}

View

{% endfor %} {% else %}

You have 0 Groups

{% endif %}
{% comment %} :TODO Create User Groups list {% endcomment %}

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