{% extends "index.html" %} {% load i18n %} {% block menu %} {% with "users" as current_category %} {{ block.super }} {% endwith %} {% endblock %} {% block content %} {% if user_groups %} {% for group in user_groups %} {% endfor %}
{% trans "Groupname" %} {% trans "Actions" %}
{{ group.group.name }} {% trans "Unassign" %}
{% else %}
{% trans "The user is not a member of any group." %}
{% endif %}
{% trans "Assign to a group" %}
{% endblock content %}