{% extends '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 %}
Name Email Actions
{{user.id}} {{user.email}}
  • {% include "_remove_tenant_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 %}
Name Actions
{{user}}
  • {% include "_add_tenant_user.html" with form=add_user_form %}
{% endif %} {% endblock %}