{% extends "zerver/base.html" %} {% set entrypoint = "support" %} {# User activity. #} {% block title %} Support panel | Zulip {% endblock %} {% block content %}
{% if error_message %}
{{ error_message }}
{% elif success_message %}
{{ success_message }}
{% endif %}
{% for user in users %} {% set realm = user.realm %}
Cloud user

{{ user.full_name }}

Email: {{ user.delivery_email }}
Date joined: {{ user.date_joined|timesince }} ago
Is active: {{ user.is_active }}
Role: {{ user.get_role_name() }}
{{ csrf_input }}
{% with %} {% set dollar_amount = dollar_amount %} {% include "corporate/support/realm_details.html" %} {% endwith %}
{% endfor %} {% for realm in realms %}
{% with %} {% set dollar_amount = dollar_amount %} {% include "corporate/support/realm_details.html" %} {% endwith %}
{% endfor %} {% for confirmation in confirmations %} {% set object = confirmation.object %}
Cloud confirmation {% if confirmation.type == Confirmation.USER_REGISTRATION %}

Pre-registration user

{% set email = object.email %} {% set realm = object.realm %} {% set show_realm_details = True %} {% elif confirmation.type == Confirmation.REALM_CREATION %}

Realm creation

{% set email = object.email %} {% set show_realm_details = False %} {% elif confirmation.type == Confirmation.INVITATION %}

Invite

{% set email = object.email %} {% set realm = object.realm %} {% set show_realm_details = True %} {% elif confirmation.type == Confirmation.MULTIUSE_INVITE %}

Multiuse invite

{% set realm = object.realm %} {% set show_realm_details = False %} {% elif confirmation.type == Confirmation.REALM_REACTIVATION %}

Realm reactivation

{% set realm = object %} {% set show_realm_details = False %} {% endif %} {% if email %} Email: {{ email }}
{% endif %} Link: {{ confirmation.url }}
Expires in: {{ confirmation.expires_in }}
{% if confirmation.link_status %} Status: {{ confirmation.link_status }}
{% endif %}
{% if show_realm_details %} {% with %} {% set dollar_amount = dollar_amount %} {% include "corporate/support/realm_details.html" %} {% endwith %} {% elif realm %} Cloud realm

{{ realm.string_id }}

{% else %} Cloud realm

N/A

{% endif %}
{% endfor %}
{% endblock %}