{% extends "layers/layer_base.html" %} {% load i18n %} {% load layers_tags %} {% load pagination_tags %} {% load taggit_extras %} {% load staticfiles %} {% load url from future %} {% block title %} {% trans "Explore Layers" %} - {{ block.super }} {% endblock %} {% block body_class %}data data-list explore{% endblock %} {% block body %}

{% trans "Explore Layers" %}

{% include "layers/_layer_filters.html" %}
{% include "_viewby.html" %}
{% if object_list.count %} {% autopaginate object_list 2 %} {% for layer in object_list %} {% include "layers/_layer_list_item.html" %} {% endfor %} {% else %}

{% trans "No data found" %}

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