{% extends "admin/dashboard.html" %} {% block title %}{{ model_admin.name_plural }} - {{ settings.ADMIN_SITE_TITLE }}{% endblock %} {% block body %}

{{ model_admin.name_plural }}

Add {{ model_admin.name }}
{% if model_admin.search_fields %}
{% if search %} Clear {% endif %}
{% endif %}
{% for column in model_admin.list_display %} {% endfor %} {% for item in items %} {% for column in model_admin.list_display %} {% endfor %} {% empty %} {% endfor %}
{% if column == "__str__" %} {{ model_admin.name }} {% else %} {{ column|replace("_", " ")|title }} {% endif %} Actions
{% if column == "__str__" %} {{ item }} {% else %} {% set value = getattr(item, column, None) %} {% if value is not None %} {% if value is boolean %} {% if value %} Yes {% else %} No {% endif %} {% elif value is string and value|length > 50 %} {{ value[:50] }}... {% else %} {{ value }} {% endif %} {% else %} - {% endif %} {% endif %} Edit

No {{ model_admin.name_plural|lower }} found

Add your first {{ model_admin.name|lower }}
{% if total_pages > 1 %}
{% endif %}
{% endblock %}