{% extends "admin/base_new.html" %} {% block title %}{{ model_name }} - {{ site_name }}{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %} {% if search_fields %}
{% if search_query %} Clear {% endif %}
{% endif %} {% if search_query %}
Showing {{ objects|length }} result{% if objects|length != 1 %}s{% endif %} for "{{ search_query }}"
{% endif %}
{% if objects %}
{% for field_name in list_display %} {% endfor %} {% for row in objects %} {% for value in row["values"] %} {% endfor %} {% endfor %}
{{ field_name.replace('_', ' ').title() }}Actions
{% 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 %} Edit
{% else %}
{% if search_query %}

No results found

No {{ model_name }} objects match "{{ search_query }}".

Clear Search {% else %}

No {{ model_name }} objects yet

Get started by creating your first {{ model_name }}.

{% if can_add %} Add {{ model_name }} {% endif %} {% endif %}
{% endif %}
{% endblock %}