{% load i18n %}{% if result_hidden_fields %}
{% 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 %} {{ header.text|capfirst }}{% else %} {{ header.text|capfirst }}{% endif %} {% if header.sortable %}{% if header.sort_priority > 0 %} {% if num_sorted_fields > 1 %} {{ header.sort_priority }}{% endif %} {% endif %}{% endif %}
{{ result.form.non_field_errors }}
{% else %}
{% if cl.full_result_count %} {% trans 'No results found matching the specified criteria. Please try again!' %}{% else %} {% trans 'There are no records yet. Use the add button above to create a new' %} {{cl.opts.verbose_name|capfirst}}!{% endif %}
{% endif %}