{% extends request.resolver_match.app.base_template_name|default:'viewflow/base_page.html' %} {% load viewflow %} {% block page-toolbar-actions %} {% if view.search_enabled %}{% endif %} {{ block.super }} {% endblock %} {% block content %} {% block list-filter %}{% if view.filterset %}{% include 'viewflow/includes/list_filter.html' %}{% endif %}{% endblock list-filter %}
{% block list-cell %}
{% block list-header %}
{% block list-header-title %}

{% if view.title %}{{ view.title }} {% else %}{{ view.model|verbose_name_plural|title }} {% endif %}

{% endblock %} {% block list-header-subtitle %}{% endblock %} {% block list-header-menu %}
{% if view.filterset %} filter_list {% endif %} {% include 'viewflow/includes/view_action_menu.html' with view=view only %}
{% endblock %}
{% endblock list-header %} {% block list-content %} {% with bulk_actions=view.get_bulk_actions %}
{% if bulk_actions %}{% endif %} {% if bulk_actions %} {% endif %} {% for name, column in view.list_columns.items %} {% with order=column|list_column_order:view %} {% endwith %} {% endfor %} {% for obj, row in page_obj|default:object_list|list_page_data:view %} {% if bulk_actions %} {% endif %} {% for column, value in row %}{% endfor %} {% endfor %}
{% include 'viewflow/includes/list_bulk_actions.html' with actions=bulk_actions %} {{ column.header }}
{{ value }}
{% endwith %} {% endblock list-content %} {% block list-pagination %}{% include 'viewflow/includes/list_pagination.html' %}{% endblock list-pagination %}
{% endblock list-cell %}
{% endblock content %}