{% extends "admin/base_site.html" %} {% load static %} {% load pipeline %} {% load i18n %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block extrahead %} {% stylesheet 'libraries' %} {% javascript 'jquery-lib' %} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Group Membership Helper

To give one user permission to edit data created by another users, groups can be used: If user A is member of a group named B, user A can edit data of user B. For now such data includes only skeleton reconstruction data.

This tool provides an easy way to create and revoke such group memberships for multiple users at once. Below you will find two columns. You can select groups and users on the left and give them permission to edit data of groups and users of the right. Press 'Apply' if you want to save all selected changes.

{% csrf_token %} {% if users and groups %}
    {% for user in users %}
  • {% endfor %}
    {% for group in groups %}
  • {% endfor %}
    {% for user in users %}
  • {% endfor %}
    {% for group in groups %}
  • {% endfor %}
{% else %} Couldn't find any users or groups!This tool requires at least two users or two groups to give some meaningful options. {% endif %}

{% endblock %}