mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-24 21:07:17 +00:00
76 lines
1.9 KiB
HTML
76 lines
1.9 KiB
HTML
{% extends "sysadmin/base.html" %}
|
|
|
|
{% load seahub_tags i18n %}
|
|
|
|
{% block cur_traffic %}tab-cur{% endblock %}
|
|
|
|
{% block extra_style %}
|
|
<style type="text/css">
|
|
#traffic-month-form {
|
|
margin-top:10px;
|
|
}
|
|
#traffic-month-form .input {
|
|
width:100px;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block right_panel %}
|
|
<h3 class="hd">{% trans "User Traffic" %}</h3>
|
|
|
|
<form action="{{ sys_traffic_admin }}" method="get" autocomplete="off" id="traffic-month-form">
|
|
<label for="month">{% trans "Month:" %}</label>
|
|
<input type="text" name="month" maxlength="6" value="{{ month }}" class="input" />
|
|
</form>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>{% trans "User" %}</th>
|
|
<th>{% trans "Total Usage" %}</th>
|
|
</tr>
|
|
{% for info in traffic_info_list %}
|
|
<tr>
|
|
<td><a href="{% url 'user_info' info.email %}">{{ info.email }}</a></td>
|
|
<td>{{ info.total |filesizeformat }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
<div id="paginator">
|
|
{% if current_page != 1 %}
|
|
<a href="?page={{ prev_page }}&per_page={{ per_page }}">{% trans "Previous" %}</a>
|
|
{% endif %}
|
|
{% if page_next %}
|
|
<a href="?page={{ next_page }}&per_page={{ per_page }}">{% trans "Next" %}</a>
|
|
{% endif %}
|
|
{% if current_page != 1 or page_next %}
|
|
|
|
|
{% endif %}
|
|
<span>{% trans "Per page: " %}</span>
|
|
{% if per_page == 25 %}
|
|
<span> 25 </span>
|
|
{% else %}
|
|
<a href="?per_page=25" class="per-page">25</a>
|
|
{% endif %}
|
|
{% if per_page == 50 %}
|
|
<span> 50 </span>
|
|
{% else %}
|
|
<a href="?per_page=50" class="per-page">50</a>
|
|
{% endif %}
|
|
{% if per_page == 100 %}
|
|
<span> 100 </span>
|
|
{% else %}
|
|
<a href="?per_page=100" class="per-page">100</a>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
{% block extra_script %}
|
|
<script type="text/javascript">
|
|
$('#paginator a').each(function (index, link) {
|
|
link.href = link.href + '&month={{ month }}';
|
|
});
|
|
</script>
|
|
{% endblock %}
|