{% extends "base.html" %} {% block title %} | User groups{% endblock %} {% block main %}
{% include 'snippets/messages.html' %}

User groups Create new user group

  • Administrators

    Administrators for the project {{ project.name }}

  • {% for group in project.usergroups.all %}
  • {{group.name}}

    {% if group.description %}

    {{group.description}}

    {% endif %}
  • {% endfor %}
Add user groups to grant contribute and moderate permissions to a set of users and to grant access to data groupings.
{% endblock %}