{% extends "base.html" %} {% block title %}{{ name }}{% endblock %} {% block extra_head %} {% endblock %} {% block crumbs %}

home / groups

{% endblock %} {% block content %}

{{ name }} ({{ size }})

{% if is_deleted %}

This group has been deleted.

{% endif %} {% if dynamic_config %}

This is a dynamic group. You cannot manually edit the users in this group.

Users matching {{ dynamic_config|tojson }} will be automatically added to the group.

{% if members %}

Group members

{% endif %} {% else %}
{% if members %} {% for member in members %} {% endfor %}
{{ member }}
{% endif %}
{% if not is_deleted %}

Add a member

{% if valid_actor_ids %}
{% else %} {% endif %}
{% endif %} {% endif %} {% if audit_log %}

Audit history

{% for entry in audit_log %} {% endfor %}
Date and time Operation by Operation User
{{ entry.timestamp }} {{ entry.operation_by or '*dynamic*' }} {{ entry.operation }} {{ entry.actor_id or '' }}
{% endif %} {% if not is_deleted and not dynamic_config %}

{% endif %} {% endblock %}