{% extends "umap/content.html" %} {% load i18n static %} {% block head_title %} {{ SITE_NAME }} - {% trans "My Dashboard" %} {% endblock head_title %} {% block maincontent %} {% trans "Search my maps" as placeholder %} {% include "umap/dashboard_menu.html" with selected="maps" %}
{% if maps.object_list|length > 1 %} {% blocktranslate with count=maps.object_list|length trimmed %} Download {{ count }} maps {% endblocktranslate %} {% endif %}
{% if maps or request.GET.q %} {% include "umap/map_table.html" %} {% else %}
{% blocktrans %}You have no map yet.{% endblocktrans %} {% translate "Create a map" %}
{% endif %}
{% endblock maincontent %} {% block bottom_js %} {{ block.super }} {% endblock bottom_js %}