{% load i18n static admin_list %} {% if result_list %}
{% for header in result_headers %} {% endfor %} {% for result in results %} {% if result.form.non_field_errors %} {% endif %} {% for item in result %} {{ item }} {% endfor %} {% endfor %}
{% if header.sortable %}
{{ header.text|capfirst }} {% if header.sort_priority > 0 %} {{ header.sort_priority }} {% if num_sorted_fields > 1 %} {% endif %} {% endif %}
{% else %}
{{ header.text|capfirst }}
{% endif %}
{{ result.form.non_field_errors }}
{% else %}

{% trans "No items found." %}

{% endif %}