{% extends "admin/base_new.html" %} {% block title %}{{ model_name }} - {{ site_title }}{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %} {% if search_fields %}
{% if search_query %} Clear {% endif %}
{% endif %}
{% if rows %}
{% if actions %}
0 selected
{% endif %}
{% if actions %} {% endif %} {% for header in list_headers %} {% endfor %} {% for row in rows %} {% if actions %} {% endif %} {% for cell in row.cells %} {% endfor %} {% endfor %}
{% if header.sort_url %} {{ header.label }}{% if header.sort_dir == 'asc' %} ▲{% elif header.sort_dir == 'desc' %} ▼{% endif %} {% else %} {{ header.label }} {% endif %} Actions
{% if cell.is_link %} {% if cell.is_html %}{{ cell.value|safe }}{% else %}{{ cell.value if cell.value and cell.value != '-' else '—' }}{% endif %} {% elif cell.is_html %} {{ cell.value|safe }} {% elif cell.value == '✓' %} Yes {% elif cell.value == '✗' %} No {% elif cell.value == '-' or not cell.value %} {% else %} {{ cell.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 %}
{% if pagination.num_pages > 1 or pagination.show_all %}
{% if pagination.show_all %} Showing all {{ pagination.total }} {% else %} Page {{ pagination.page }} of {{ pagination.num_pages }} ({{ pagination.total }} total) {% endif %}
{% if pagination.has_prev %} ‹ Prev {% endif %} {% if pagination.has_next %} Next › {% endif %} {% if pagination.show_all_url %} Show all {% endif %}
{% endif %}
{% if filters %} {% endif %}
{% endblock %}