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

{{ group.name }}

{% if group.description %}

{{ group.description|linebreaksbr }}

{% endif %}

Data

{% if group.project.isprivate %}
{% csrf_token %}
General settings
Select the categories that will be accessible by the usergroup {% for category in group.project.categories.all %}
{% if group.filters|is_in:category.id %} {% show_fields group.filters category %} {% endif%}
{% endfor %}
{% else %}

The project {{ group.project.name }} is public, therefore all data of the project is public too. To restrict access make the project private under project settings first.

{% endif %}
{% endblock %} {% block libraries %} {% endblock %}