{% extends "sysadmin/base.html" %} {% load seahub_tags i18n %} {% block cur_users %}tab-cur{% endblock %} {% block left_panel %}{{block.super}}
{% endblock %} {% block right_panel %}{% trans "Email" %} | {% trans "Create At / Last Login" %} | {% trans "Space Used" %} |
---|---|---|
{{ user.email }} | -- / {% if user.last_login %}{{user.last_login|translate_seahub_time}} {% else %} -- {% endif %} | {% if CALC_SHARE_USAGE %} {{ user.self_usage|filesizeformat }} + {{ user.share_usage|filesizeformat }} {% if user.quota > 0 %} / {{ user.quota|filesizeformat }} {% endif %} {% else %} {{ user.self_usage|filesizeformat }} {% if user.quota > 0 %} / {{ user.quota|filesizeformat }} {% endif %} {% endif %} |