{% load adminmedia %} {% load i18n %} {% if result_hidden_fields %}
{# DIV for HTML validation #} {% for item in result_hidden_fields %}{{ item }}{% endfor %}
{% endif %} {% if results %}
{% 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 %}{% endif %} {{ header.text|capfirst }} {% if header.sortable %} {% if header.sort_pos > 0 %} {% if header.sort_pos == 1 %} {% endif %} {{ header.sort_pos }} {% endif %} {% endif %}
{{ result.form.non_field_errors }}
{# Sorting popup: #}
{% for header in result_headers|dictsort:"sort_pos" %} {% if header.sort_pos > 0 %} {% endif %} {% endfor %}
{% trans "Sorting by:" %}
{{ header.sort_pos }} {{ header.text|capfirst }} {% if header.ascending %}{% trans "ascending" %}{% else %}{% trans "descending" %}{% endif %} {% trans "toggle" %} {% trans "remove" %}
{% trans "Reset sorting" %}
{% trans "Cancel" %}
{% endif %}