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" %}
{% endfor %}
{% else %}
No Layers Uploaded
{% endif %}
Maps
{% if my_maps.all.count != 0 %}
{% for map in my_maps.all|slice:":3" %}
{% 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" %}
{% endfor %}
{% else %}
You have 0 Groups
{% endif %}