{% extends "institutions/base.html" %} {% load seahub_tags i18n %} {% block cur_users %}tab-cur{% endblock %} {% block right_panel %}
{% trans "Email" %} / {% trans "Name" %} / {% trans "Contact Email" %} | {% trans "Status" %} | {% trans "Space Used" %} | {% trans "Create At / Last Login" %} | {% trans "Operations" %} |
---|---|---|---|---|
{{ user.email }}
{% if user.name %} {{ user.name }}{% endif %} {% if user.contact_email %} {{ user.contact_email }}{% endif %} |
{% 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 %} |
{% if user.source == "DB" %}
{{ user.ctime|tsstr_sec }} / {% else %} -- / {% endif %} {% if user.last_login %}{{user.last_login|translate_seahub_time}} {% else %} -- {% endif %} |
{% if not user.is_self %} {% trans "Delete" %} {% endif %} |
{% trans "Empty" %}
{% endif %} {% endblock %} {% block extra_script %} {% endblock %}