2017-07-04 02:46:20 +02:00
|
|
|
{% extends "logs/sidebar.html" %}
|
|
|
|
{% comment %}
|
2019-08-09 22:29:57 +02:00
|
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
2017-07-04 02:46:20 +02:00
|
|
|
{% endcomment %}
|
|
|
|
|
2019-08-16 20:14:52 +02:00
|
|
|
{% load i18n %}
|
2017-07-04 02:46:20 +02:00
|
|
|
|
|
|
|
{% block content %}
|
2019-08-16 20:14:52 +02:00
|
|
|
<table class="table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>{% trans "user"|capfirst %}</th>
|
|
|
|
<th>{% trans "Database edits" %}</th>
|
|
|
|
<th>{% trans "Rank" %}</th>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for stat in stats %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ stat|truncatechars:25 }}</td>
|
|
|
|
<td>{{ stat.num }}</td>
|
|
|
|
<td>{{ forloop.counter }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2019-08-09 22:29:57 +02:00
|
|
|
{% endblock %}
|