mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-25 06:33:48 +00:00
52 lines
1.8 KiB
HTML
52 lines
1.8 KiB
HTML
{% extends "sysadmin/base.html" %}
|
|
{% load seahub_tags i18n %}
|
|
|
|
{% block cur_users %}tab-cur{% endblock %}
|
|
|
|
{% block left_panel %}{{block.super}}
|
|
<form action="{% url 'user_search' %}" method="get" class="side-search-form">
|
|
<input type="text" name="email" class="input" value="" placeholder="{% trans "Search users..." %}" />
|
|
</form>
|
|
{% endblock %}
|
|
|
|
{% block right_panel %}
|
|
<div class="tabnav">
|
|
<ul class="tabnav-tabs">
|
|
<li class="tabnav-tab"><a href="{% url 'sys_useradmin' %}">{% trans "Database" %}</a></li>
|
|
<li class="tabnav-tab tabnav-tab-cur"><a href="{% url 'sys_useradmin_ldap' %}">{% trans "LDAP" %}</a></li>
|
|
<li class="tabnav-tab"><a href="{% url 'sys_useradmin_admins' %}">{% trans "Admins" %}</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<table>
|
|
<tr>
|
|
<th width="40%">{% trans "Email" %}</th>
|
|
<th width="35%">{% trans "Create At / Last Login" %}</th>
|
|
<th width="25%">{% trans "Space Used" %}</th>
|
|
</tr>
|
|
|
|
{% for user in users %}
|
|
<tr>
|
|
<td data="{{user.id}}"><a href="{{ SITE_ROOT }}useradmin/info/{{ user.props.email }}/">{{ user.email }}</a></td>
|
|
<td style="font-size:11px;"> -- / {% if user.last_login %}{{user.last_login|translate_seahub_time}} {% else %} -- {% endif %}
|
|
</td>
|
|
<td>
|
|
{% 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 %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
{% include "sysadmin/useradmin_paginator.html" %}
|
|
{% endblock %}
|
|
|
|
{% block extra_script %}
|
|
<script type="text/javascript">
|
|
|
|
</script>
|
|
{% endblock %}
|