{% load i18n %} {# This is just copypasta from the parent change_list_results.html file #} {% for header in result_headers %} {% endfor %}
{% if header.sortable %} {% if header.sort_priority > 0 %}
{% if num_sorted_fields > 1 %}{{ header.sort_priority }}{% endif %}
{% endif %} {% endif %}
{% if header.sortable %}{{ header.text|capfirst }}{% else %}{{ header.text|capfirst }}{% endif %}
{# /copypasta #}
{% for result in results %} {# 0: Checkbox #} {# 1: Title #} {# 2: Date #} {# 3: Image #} {# 4: Correspondent #} {# 5: Tags #}
{{ result.0 }}
{{ result.4 }}
{{ result.1 }}
{{ result.5 }}
{{ result.2 }}
{{ result.3 }}
{% endfor %}