{% load i18n static %} {% if factory and media %} {{ media }} {% if filter or listing_actions and factory %} {% include 'dynamic_listing/filters/inline_filter.html' %} {% endif %} {% endif %} {% if object_list|length > 0 %}
{% for object in object_list %} {% include row_template_name with item=object %} {% endfor %} {% if listing_actions_template_name %} {% include listing_actions_template_name %} {% endif %}
{% include "dynamic_listing/_pagination.html" %} {% else %}
{% trans "No items found." %}
{% if empty_listing_actions_template_name %} {% include empty_listing_actions_template_name %} {% endif %}
{% endif %}