{% extends 'admin/base_site.html' %} {% load i18n l10n admin_urls static %} {% block extrahead %} {{ block.super }} {{ media }} {% endblock %} {% block bodyclass %}{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} delete-confirmation delete-selected-confirmation{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %} {% if action == 'make_inactive' %}

Are you sure you want to make the selected users inactive?

{% else %}

Are you sure you want to make the selected users active?

{% endif %} {% include 'admin/includes/object_delete_summary.html' %}

{% csrf_token %}
{% for obj in queryset.all %} {% endfor %}
{% trans 'No, take me back' %}
{% endblock %}