{% extends 'base.html' %} {% import 'crudlfap.html' as crudlfap %} {% block breadcrumb %} {% include 'crudlfap/_breadcrumb_object.html' %} {% endblock %} {% block after_container %} {{ super() }} {% endblock %} {% block content %}
{% if view.search_form or view.filterset %}
{% if view.search_form %} {{ render_form(view.search_form) }} {% endif %} {% if view.filterset %} {{ render_form(view.filterset.form) }} {% endif %}
{% endif %}
{% if view.table %}
{{ view.table.as_html(request) }}
{% else %} {{ _('That page contains no results') }} {% endif %} {% include 'crudlfap/_pagination.html' %}
{% endblock %}