{% extends "zerver/base.html" %} {# User Activity. #} {% block title %} Info {% endblock %} {% block customhead %} {{ super() }} {{ bundle('activity') }} {{ bundle('support') }} {% endblock %} {% block content %}

{% if message %}
{{ message }}
{% endif %}
{% for user in users %}
user

{{ user.full_name }}

Email: {{ user.email }}
Date joined: {{ user.date_joined|timesince }} ago
Is active: {{ user.is_active }}
Is admin: {{ user.is_realm_admin }}

realm

{{ user.realm.name }}

URL: {{ user.realm.uri }}
Date created: {{ user.realm.date_created|timesince }} ago
Admins: {{ user.realm.admin_emails }}
Status:
{{ csrf_input }}
{{ csrf_input }} Plan type:
Discount (use 85 for nonprofits):
{{ csrf_input }}
{{ csrf_input }}

{% endfor %} {% for realm in realms %}
realm

{{ realm.name }}

URL: {{ realm.uri }} | stats | activity
Date created: {{ realm.date_created|timesince }} ago
Admins: {{ realm.admin_emails }}
Status:
{{ csrf_input }}
Plan type:
{{ csrf_input }}
Discount (use 85 for nonprofits):
{{ csrf_input }}
{{ csrf_input }}

{% endfor %}
{% endblock %}