{% extends "base.html" %} {% block title %}Groups ยท auth-ingress{% endblock %} {% block content %} {% if error %}{% endif %} {% if message %}
{{ message }}
{% endif %} {% if summary %}
{% for item in summary %}
{{ item.label }}{{ item.value }}

{{ item.hint }}

{% endfor %}
{% endif %}
{% set create_state = form_state if form_state.applies_to('group_create') else none %}

Create group

Use groups to control service access through user memberships and service rules.

{% if groups %}
{% for row in groups %} {% set group = row.group %} {% endfor %}
NameStatusUsersServicesDescription
{{ group.name }} {{ group.status }} {{ row.user_count }} {{ row.service_count }} {{ group.description or '' }} Manage
{% else %}

No groups found

Adjust the filters or create a group.

{% endif %} {% endblock %}