{% extends 'tenantservice/tsbase.html' %} {% load bootstrap_icons %} {% load django_bootstrap5 %} {% block title %}DBoD Selfservice | Nutzergruppe{% endblock %} {% block content %}

Nutzergruppe: {{ usergroup.name }}

{{ usergroup.desc }}

{% csrf_token %} {% bootstrap_form form=ugform layout='horizontal' %}

IP Bereiche

{% for ip in ips %} {% empty %} {% endfor %}
Bezeichnung IP-Adresse Netzwerk IPv6 Aktiv
{{ ip.desc }} {{ ip.ipaddr }} {% if ip.network %} {% bs_icon 'check2-circle' color='green' %} {% else %} {% bs_icon 'circle' color='lightgray' %} {% endif %} {% if ip.v6 %} {% bs_icon 'check2-circle' color='green' %} {% else %} {% bs_icon 'circle' color='lightgray' %} {% endif %} {% if ip.is_active %} {% bs_icon 'check2-circle' color='green' %} {% else %} {% bs_icon 'circle' color='lightgray' %} {% endif %}
Diese Nutzergruppe hat keine IP-Adressen
{% endblock %}