{% extends "admin_base.html" %} {% load seahub_tags i18n %} {% load url from future %} {% block nav_useradmin_class %}class="cur"{% endblock %} {% block main_panel %}
{% trans "Email" %} | {% trans "Status" %} | {% trans "Create At" %} | {% trans "Operations" %} | |
---|---|---|---|---|
{{ user.email }} | {% if user.props.is_active %}{% trans "Activated" %} | {% else %}{% trans "Active" %} | {% endif %}{{ user.ctime|tsstr_sec }} | {% if not user.is_self %} {% trans "Delete" %} {% trans "ResetPwd" %} {% if user.is_staff %} {% trans "Revoke Admin" %} {% else %} {% trans "Set Admin" %} {% endif %} {% endif %} |