{% extends base_template_path %} {% load powercrud powercrud_partials %} {% 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_selection_controls %} {% partial bulk_selection_status %} {% endif %} {% partial list_actions %}
{% if filter_favourites_enabled %} {% include framework_template_path|add:"/partial/filter_favourites.html" %} {% endif %} {% if filterset %} {% partial filter_trigger %} {% endif %} {% if list_options_url and list_column_state.enabled %} {% partial list_columns %} {% endif %} {% partial page_size_selector %}
{% if filterset %} {% endif %}
{% partial filtered_results %}
{% partial modal %} {% endpartialdef pcrud_content %} {% 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 }} {% else %} {{ record_count_total }} {% endif %} {% if record_count_has_active_filters %}matching{% else %}total{% endif %} record{{ record_count_total|pluralize }} {% endif %} {% if show_bulk_selection_meta %} {% if bulk_selection_controls_template_paths %}{% include bulk_selection_controls_template_paths with selection_control="matching" %}{% else %}{% include framework_template_path|add:"/partial/bulk_selection_controls.html" with selection_control="matching" %}{% 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 modal %} {% include framework_template_path|add:"/partial/modal.html" %} {% endpartialdef modal %} {% partialdef list_actions %} {% if list_actions_template_paths %} {% include list_actions_template_paths %} {% else %} {% include framework_template_path|add:"/partial/list_actions.html" %} {% endif %} {% endpartialdef list_actions %} {% partialdef bulk_selection_status %} {% if bulk_selection_status_template_paths %}{% include bulk_selection_status_template_paths %}{% else %}{% include framework_template_path|add:"/partial/bulk_selection_status.html" %}{% endif %} {% endpartialdef bulk_selection_status %} {% partialdef list_columns %} {% if list_columns_template_paths %}{% include list_columns_template_paths %}{% else %}{% include framework_template_path|add:"/partial/list_columns.html" %}{% endif %} {% endpartialdef list_columns %} {% partialdef filter_trigger %} {% if filter_trigger_template_paths %} {% include filter_trigger_template_paths %} {% else %} {% include framework_template_path|add:"/partial/filter_trigger.html" %} {% endif %} {% endpartialdef filter_trigger %} {% partialdef filter_panel_actions %} {% if filter_panel_actions_template_paths %} {% include filter_panel_actions_template_paths %} {% else %} {% include framework_template_path|add:"/partial/filter_panel_actions.html" %} {% endif %} {% endpartialdef filter_panel_actions %} {% partialdef filter_form %} {% if filter_form_template_paths %} {% include filter_form_template_paths %} {% else %} {% include framework_template_path|add:"/partial/filter_form.html" %} {% endif %} {% endpartialdef filter_form %} {% partialdef pagination %} {% if pagination_template_paths %} {% include pagination_template_paths %} {% else %} {% include framework_template_path|add:"/partial/pagination.html" %} {% endif %} {% endpartialdef pagination %} {% partialdef page_size_selector %} {% if page_size_selector_template_paths %} {% include page_size_selector_template_paths %} {% else %} {% include framework_template_path|add:"/partial/page_size_selector.html" %} {% endif %} {% endpartialdef page_size_selector %}