{% extends base_template_path %} {% load powercrud_partials %} {% load powercrud %} {% block content %} {% partial pcrud_content %} {% endblock %} {% partialdef pcrud_content %} {{header_title}}

{{ view.get_view_title }}

{% if view.get_view_instructions %}

{{ view.get_view_instructions }}

{% endif %} {% with view_help=view.get_view_help view_help_paragraphs=view.get_view_help_detail_paragraphs %} {% if view_help %}
{{ view_help.summary }}
{% for paragraph in view_help_paragraphs %}

{{ paragraph }}

{% endfor %}
{% endif %} {% endwith %}
{% if enable_bulk_edit %} {% partial bulk_selection_status %} {% endif %} {% if create_view_url %} {% if use_htmx and htmx_target %} Create {{ object_verbose_name }} {% else %} Create {{ object_verbose_name }} {% endif %} {% endif %} {% extra_buttons view %}
{% if filter_favourites_enabled %} {% include "powercrud/contrib/favourites/toolbar.html" %} {% endif %} {% if filterset %}
{% endif %} {% if list_options_url and list_column_state.enabled %} {% endif %}
per page
{% if filterset %} {% endif %} {% for key, values in request.GET.lists %} {% if key != 'page_size' and key != 'page' and key != visible_filter_param_name %} {% for value in values %} {% if filterset and key not in filterset.form.fields %} {% elif not filterset %} {% endif %} {% endfor %} {% endif %} {% endfor %}
{% partial filtered_results %}
{% include framework_template_path|add:"/partial/modal.html" %} {% endpartialdef pcrud_content %} {% partialdef bulk_selection_status %}
Bulk Edit {{ selected_count }}
{% endpartialdef bulk_selection_status %} {% partialdef filtered_results %} {% if show_record_count or show_bulk_selection_meta %}
{% if show_record_count %}
{% if is_paginated and record_count_total > 0 %} Showing {{ record_count_start }}-{{ record_count_end }} of {{ record_count_total }} {% if record_count_has_active_filters %}matching{% else %}total{% endif %} record{{ record_count_total|pluralize }} {% else %} {{ record_count_total }} {% if record_count_has_active_filters %}matching{% else %}total{% endif %} record{{ record_count_total|pluralize }} {% endif %}
{% endif %} {% if show_bulk_selection_meta %}
{% if show_select_all_matching %} {% elif show_select_all_matching_limit %} {{ bulk_selection_meta_message }} {% endif %}
{% endif %}
{% endif %} {% if object_list %} {% object_list object_list view %} {% partial pagination %} {% else %}

There are no {{ object_verbose_name_plural }}.{% if create_view_url %} Create one now?{% endif %}

{% endif %} {% endpartialdef filtered_results %} {% partialdef pagination %} {% if is_paginated %} {% endif %} {% endpartialdef pagination %}