{% extends "sysadmin/sys_org_info_base.html" %} {% load i18n seahub_tags %} {% block right_panel %}
{% 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.self_usage|seahub_filesizeformat }} {% if user.quota > 0 %} / {{ user.quota|seahub_filesizeformat }} {% endif %} {{ user.ctime|tsstr_sec }} / {% if user.last_login %}{{user.last_login|translate_seahub_time}} {% else %} -- {% endif %} {% if not user.is_self %} {% trans "Delete" %} {% trans "ResetPwd" %} {% endif %}

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

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