{{ title }}: {% if subtitle %}{{ subtitle }}{% endif %}
{# include extra_controls #}
{% if extra_controls.items %}
{% for name, control in extra_controls.items %}
{{ control.icon|safe }}
{% endfor %}
{% endif %}
{# To include a create form, exposed via modal, include create_form (dict) in the context of your view. The create_from must include modal_name and link_title fields #}
{% if create_form %}
{% if allow_create_groups and request.user|in_any_group:allow_create_groups %}
{% if create_form.link_title %} {{ create_form.link_title }} {% endif %}
{% endif %}
{% endif %}
{# To include a filter form, exposed via modal, include filter_form (dict) in the context of your view. The filter_from must include modal_name and link_title fields #}
{% if filter_form %}
{% if filter_form.link_title %} {{ filter_form.link_title }} {% endif %}
{% if filter_form.undo and request.META.QUERY_STRING %}
{% endif %}
{% endif %}
{% include table %}
{% if is_paginated_view %}
{% include 'handyhelpers/generic/bs5/partials/pagination_controls.htm' %}
{% endif %}