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

{% trans "Info"%}

T{% trans "here are currently no users for this tenant"%}

{% endif %} {% if new_users %}

{% trans "Add new users"%}

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