{% extends "django_umin/base.html" %} {% load django_umin_tags %} {% block content %}

Delete {{ count }} {{ model_name }}?

Are you sure you want to delete the following items? This action cannot be undone.

    {% for obj in queryset %}
  • {{ obj }}
  • {% endfor %}
Cancel
{% csrf_token %} {% for obj in queryset %} {% endfor %}
{% endblock %}