{% extends "base.html" %} {% load viewgroups %} {% block title %} | {{group.name}}{% endblock %} {% block bodydata %} data-project-id="{{group.project.id}}" data-project-isprivate="{{group.project.isprivate}}" data-group-id="{{group.id}}" data-everyone-contributes="{{ group.project.everyone_contributes }}"{% endblock %} {% block main %}
{% include 'snippets/messages.html' %}
User group

{{ group.name }}

{% if group.description %}

{{ group.description|linebreaksbr }}

{% endif %}

Roles

{% if group.project.everyone_contributes != 'false' and not group.can_contribute %}
Note: Currently, all users{% if not group.project.isprivate and group.project.everyone_contributes == 'auth' %}, who have access to this project,{% endif %} can contribute to the project. This setting overwrites permissions of individual user groups. If you plan to restrict contributing permissions to certain user groups, head to Project Settings first and change the project permissions.
{% endif %}

Members of this user group will only be able to read data from its data groupings. However, the users will be able to comment on contributions.

Members of this user group will be able to contribute new data to the project and read data from its data groupings.

Members of this user group will be able to contribute new data as well as to read and moderate data from its data groupings.

Access to data groupings

{% if group.project.groupings.all %} {% viewgroups group %} {% else %}

We couldn't find any data groupings for this project.

You can use data groupings to provide users access to a subset of all data contributed to the project. For instance, you can create a data grouping that includes all tube stations that were added during the last seven days.

Create new data grouping
{% endif %}
{% endblock %} {% block libraries %} {% endblock %}