{% extends "admin/base_site.html" %} {% load i18n admin_urls %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% csrf_token %} {% if not search_values_input %} {{ form.as_table }} {% else %} {% for field in form %} {% if field.name in regular_field_names %} {% endif %} {% endfor %}
Model field Filter by value Filter by isnull
{{ field.label_tag }} {{ field.errors }} {{ field }} {{ field.null_field }}
{% endif %}

{% if query_str %}

Found {{ filtered_count }} entries (total: {{ total_count }})

{% endif %} {% if page_obj %} {% for item in page_obj %} {% endfor %}
{{ forloop.counter0|add:page_obj.start_index }} {{ item }}
{% endif %} {% endblock %}