Showing {{ objects|length }} result{% if objects|length != 1 %}s{% endif %} for "{{ search_query }}"
{% endif %}
{% if objects %}
{% for field_name in list_display %}
{{ field_name.replace('_', ' ').title() }}
{% endfor %}
Actions
{% for row in objects %}
{% for value in row["values"] %}
{% if loop.first %}
{{ value if value and value != '-' else '—' }}
{% elif value == '✓' %}
Yes
{% elif value == '✗' %}
No
{% elif value == '-' or not value %}
—
{% elif value and '...' in value|string and value|string|length <= 12 %}
{{ value }}
{% else %}
{{ value }}
{% endif %}