{% extends "django_umin/base.html" %} {% load django_umin_tags %} {% block title %}{{ model_name_plural|title }}{% endblock %} {% block content %}

{{ model_name_plural|title }}

Manage your {{ model_name_plural }}

{% if has_add_permission %} Add {{ model_name|title }} {% endif %}
{% if crud_view.search_fields or crud_view.list_filter %}
{% if crud_view.search_fields %}
{% endif %} {% if crud_view.list_filter %}
{% for filter_field in crud_view.list_filter %}
{% endfor %}
{% endif %} {% if crud_view.list_filter %}
{% endif %}
{% endif %} {% if search_query %}
{{ object_list|length }} result{{ object_list|length|pluralize }} found for "{{ search_query }}"
Clear search
{% endif %}
{% include "django_umin/list_content.html" %}
{% endblock %}