{% extends 'tenantservice/tsbase.html' %} {% load django_bootstrap5 %} {% bootstrap_javascript %} {% bootstrap_messages %} {% block title %}DBoD Selfservice | Organisationsdaten{% endblock %} {% block content %}

Daten ihrer Organisation

{% csrf_token %} {% bootstrap_form form=tenantform layout='horizontal' %}
{% if tenantuser.is_tenantadmin %}

Andere Nutzer ihrer Organisation

Da Sie Administrator ihrer Organisation sind, können Sie andere Benutzer bearbeiten.

{% for ou in otherusers %}
  • {{ ou.user.last_name }}, {{ ou.user.first_name }} ({{ ou.user.username }})
  • {% endfor %}
    {% endif %}

    Nutzergruppen

    {% if usergroups %} {% else %}

    Ihre Organisation hat noch keine Nutzergruppen. Bitte lassen sie welche anlegen!

    {% endif %}
    {% endblock %}