{# Confirm the unassignment of a user from a usergroup #} {% extends "index.html" %} {% load i18n %} {% block menu %} {% with "usergroups" as current_category %} {{ block.super }} {% endwith %} {% endblock %} {% block content %}
{% csrf_token %}
{% blocktrans with group=usergroup.name member=object.user.name %} Do you really want to remove the user {{ member }} from group {{ group }}? {% endblocktrans %}
{% trans 'No' %}  
{% endblock content %}