{% extends "sysadmin/base.html" %} {% load seahub_tags i18n %} {% block cur_users %}tab-cur{% endblock %} {% block extra_style %} {% endblock %} {% block left_panel %}{{block.super}}
{% endblock %} {% block right_panel %}
{% if users %} {% for user in users %} {% endfor %}
{% trans "Email" %} {% trans "Status" %} {% trans "Space Used" %} {% trans "Last Login" %} {% trans "Operations" %}
{{ user.email }}
{% 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.last_login %}{{user.last_login|translate_seahub_time}} {% else %} -- {% endif %} {% if not user.is_self %} {% trans "Delete" %} {% endif %}
{% include "snippets/admin_paginator.html" %} {% else %}

{% trans "No LDAP users have been imported" %}

{% endif %}

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

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