{% extends "documents/document_base.html" %} {% load i18n %} {% load documents_tags %} {% load pagination_tags %} {% load taggit_extras %} {% load staticfiles %} {% load url from future %} {% block title %} {% trans "Explore Documents" %} - {{ block.super }} {% endblock %} {% block body_class %}documents documents-list explore{% endblock %} {% block body %}

{% trans "Explore Documents" %}

{% include "documents/_document_filters.html" %}
{% include "_viewby.html" %}
{% if object_list.count %} {% autopaginate object_list 2 %} {% for document in object_list %} {% include "documents/_document_list_item.html" %} {% endfor %} {% else %}

{% trans "No data found" %}

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