{% extends base_template_path %} {% load partials %} {% load nominopolitan %} {% block content %} {% partial nm_content %} {% endblock %} {% partialdef nm_content %} {{header_title}}

{{ object_verbose_name_plural|capfirst }}

{% if filterset %}
{% if not use_htmx %} {% endif %} Reset
{% 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 filterset %} {% endif %}
{% partial filtered_results %}
{% endpartialdef nm_content %} {% partialdef filtered_results %} {% if object_list %} {% object_list object_list view %} {% partial pagination %} {% else %}

There are no {{ object_verbose_name_plural }}. Create one now?

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