{% extends "admin_base.html" %} {% load seahub_tags i18n %} {% block nav_useradmin_class %}class="cur"{% endblock %} {% block title_panel %}
{% endblock %} {% block main_panel %} {% for user in users %} {% endfor %}
{% 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 %}
{% include "sysadmin/useradmin_paginator.html" %} {% endblock %} {% block extra_script %} {% endblock %}