{% extends "wagtailadmin/base.html" %} {% load i18n %} {% block titletag %}{% trans "Delete group" %}{% endblock %} {% block content %} {% trans "Delete group" as del_str %} {% include "wagtailadmin/shared/header.html" with title=del_str subtitle=group.name icon="group" %}
{% blocktrans with group_name=group.name count group_user_count=group.user_set.count %} The group '{{ group_name }}' has {{ group_user_count }} member. {% plural %} The group '{{ group_name }}' has {{ group_user_count }} members. {% endblocktrans %}
{% if group.user_set.count %} {% trans "Deleting this group will revoke this group's permissions from all member users." %} {% endif %}
{% trans "Are you sure you want to delete this group?" %}