{% extends "sundae/base.html" %} {% block content %}

Confirm {{ action_display_name }}

Are you sure you want to {{ action_display_name|lower }} the following {{ count }} {{ verbose_name_plural }}?

{% if objects %}
    {% for obj in objects %}
  • {{ obj }}
  • {% endfor %} {% if count > 10 %}
  • ...and {{ count|add:"-10" }} more items
  • {% endif %}
{% endif %}
{% csrf_token %} {% for id in selected_ids %} {% endfor %} Cancel
{% endblock %}