{% extends "sysadmin/sys_inst_info_base.html" %} {% load i18n seahub_tags %} {% block right_panel %}
{% if users %} {% for user in users %} {% endfor %}
{% trans "Email" %} {% trans "Status" %} {% trans "Space Used" %} {% trans "Create At / Last Login" %} {% trans "Operations" %}
{{ user.email }}
{% if user.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %}

{{ user.space_usage|seahub_filesizeformat }} {% if user.space_quota > 0 %} / {{ user.space_quota|seahub_filesizeformat }} {% endif %}

{{ user.ctime|tsstr_sec }} / {% if user.last_login %}{{user.last_login|translate_seahub_time}} {% else %} -- {% endif %} {% if user.inst_admin %}{% trans "Revoke Admin" %}{% else %}{% trans "Set Admin" %}{% endif %}
{% include "snippets/admin_paginator.html" %} {% else %}

{% trans "Empty" %}

{% endif %}

{% trans "Activating..., please wait" %}

{% endblock %} {% block extra_script %} {% endblock %}