{% extends "base.html" %} {% block title %} | {{group.name}}{% endblock %} {% block bodydata %} data-project-id="{{group.project.id}}" data-group-id="{{group.id}}"{% endblock %} {% load filter_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
{% for category in group.project.categories.all %} {% if forloop.first %}
Select the categories that will be accessible by the usergroup {% endif %}
{% if group.filters|is_in:category.id %} {% show_fields group.filters category %} {% endif%}
{% if forloop.last %}
{% endif %} {% empty %} {% 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 %}