{% extends "admin/base.html" %} {% block title %}{{ ma.get_verbose_name_plural() | title }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{{ ma.get_verbose_name_plural() | title }}

{{ pagination.total }} total

{% if ma.can_create %} + Add {{ ma.get_verbose_name() | title }} {% endif %}
{% if success == "created" %}
Object created successfully.
{% elif success == "saved" %}
Changes saved successfully.
{% elif success == "deleted" %}
Deleted successfully.
{% endif %}
{% if ma.search_fields %}
{% for field, val in filter_params.items() %} {% endfor %} {% if search %} ✕ Clear {% endif %}
{% endif %}
{{ csrf_input(request) }} {% if ma.can_delete %}
0 selected
{% endif %}
{% if ma.can_delete %} {% endif %} {% for col in list_display %} {% endfor %} {% if ma.can_edit or ma.can_delete %} {% endif %} {% for row in rows %} {% if ma.can_delete %} {% endif %} {% for cell in row.cells %} {% endfor %} {% if ma.can_edit or ma.can_delete %} {% endif %} {% else %} {% endfor %}
{% if ordering_param == col %} {{ col | replace("_", " ") | title }} {% elif ordering_param == "-" + col %} {{ col | replace("_", " ") | title }} {% else %} {{ col | replace("_", " ") | title }} {% endif %} Actions
{% if cell == "True" %} Yes {% elif cell == "False" %} No {% elif cell == "None" or cell == "" %} {% else %} {{ cell }} {% endif %}
{% if ma.can_edit %} Edit {% endif %} {% if ma.can_delete %} Del {% endif %}
{% if search %}No results for "{{ search }}". {% elif filter_params %}No results match the current filters. {% else %}No {{ ma.get_verbose_name_plural() }} yet.{% endif %}
{% if pagination.total_pages > 1 %}
{% if pagination.has_prev %} « {% else %} {% endif %} {% for p in pagination.page_range %} {{ p }} {% endfor %} {% if pagination.has_next %} » {% else %} {% endif %}
{% endif %}
{% if filter_groups %} {% endif %}
{% endblock %}