{% extends "admin_base.html" %} {% load static %} {% block title %}Switch Tenant{% endblock %} {% block page_title %}Switch Tenant{% endblock %} {% block page_description %}Switch between different tenant accounts{% endblock %} {% block content %}

Switch Organization

Select an organization to access:

{% if tenant_users %}
{% csrf_token %}
{% for tenant_user in tenant_users %} {% endfor %}
Cancel
{% else %}
You don't have access to any organizations. Please contact your administrator.
{% endif %}
{% endblock %}