{% extends 'base.html' %} {% block bodydata %} data-project-id="{{ project.id }}" data-project-locked="{{ project.islocked }}" {% endblock %} {% block title %} | Project: {{ project.name }} - User groups{% endblock %} {% block main %}
{% include 'snippets/messages.html' %}
{% if project.islocked %}

The project is locked, therefore user groups cannot be edited. If you wish to edit them, you have to unlock the project in the project settings first.

{% else %}

Create user groups to grant `contribute` and `moderate` permissions to a set of users, also to grant access to subsets for private projects.

{% endif %}

{% if project.islocked %}{% endif %} User groups {% if not project.islocked %} Create new user group {% endif %}

  • {% if project.islocked %}{% endif %} Administrators

    Administrators for the project {{ project.name }}.

  • {% for usergroup in project.usergroups.all %}
  • {% if project.islocked %}{% endif %} {{ usergroup.name }}

    {% if usergroup.description %}

    {{ usergroup.description }}

    {% endif %}
  • {% endfor %}
{% endblock %}