{% extends "base.html" %} {% load filters %} {% load usergroups %} {% block bodydata %} data-project-id="{{grouping.project.id}}" data-grouping-id="{{grouping.id}}"{% endblock %} {% block title %} | Data grouping: {{grouping.name}}{% endblock %} {% block main %} {% csrf_token %}
{% include 'snippets/messages.html' %}
Data grouping

{{ grouping.name }}

{% if grouping.description %}

{{ grouping.description|linebreaksbr }}

{% endif %}

Permissions

{% if not grouping.project.isprivate %}

The project {{ grouping.project.name }} is public, but this data grouping is only accessible by members of user groups you have granted access to.

Grant access to the public

The project {{ grouping.project.name }} is public and this data grouping is accessible to the public.

Revoke access from the public
{% endif %} {% if grouping.project.usergroups.all|length > 0 %} {% usergroups grouping %} {% else %}

We couldn't find any user groups for this field.

Create a new user group to grant its members access to this data grouping. Otherwise it will only be visible to project administrators.

Create new user group
{% endif %}
{% endblock %} {% block modals %} {% endblock %} {% block libraries %} {% endblock %}