{% extends 'django_openstack/syspanel/base.html' %} {% block sidebar %} {% with current_sidebar="tenants" %} {{block.super}} {% endwith %} {% endblock %} {% block page_header %} {% endblock %} {% block syspanel_main %}
{% if users %} {% for user in users %} {% endfor %}
ID Name Email Actions
{{user.id}} {{user.name}} {{user.email}}
  • {% include "django_openstack/syspanel/tenants/_remove_user.html" with form=remove_user_form %}
{% else %}

Info

There are currently no users for this tenant

{% endif %} {% if new_users %}

Add new users

{% for user in new_users %} {% endfor %}
ID Name Actions
{{user.id}} {{user.name}}
  • {% include "django_openstack/syspanel/tenants/_add_user.html" with form=add_user_form %}
{% endif %} {% endblock %}