{% extends "maps/map_base.html" %} {% load i18n %} {% load maps_tags %} {% load pagination_tags %} {% load taggit_extras %} {% load staticfiles %} {% load url from future %} {% block body_class %}maps explore{% endblock %} {% block body %}

{% trans "Explore Maps" %}

{% trans "Create a New Map" %}
{% include "maps/_map_filters.html" %}
{% include "_viewby.html" %}
{% if object_list.count %} {% autopaginate object_list 10 %} {% for map in object_list %} {% include "maps/_map_list_item.html" %} {% endfor %} {% else %}

{% trans "No data found" %}

{% endif %}
{% if object_list.count %} {% paginate %} {% endif %}
{% endblock %} {% block extra_script %} {% endblock %}