mirror of
https://gitlab.crans.org/mediatek/med.git
synced 2024-11-27 04:53:03 +00:00
29 lines
660 B
HTML
29 lines
660 B
HTML
{% extends "logs/sidebar.html" %}
|
|
{% comment %}
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<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>
|
|
{% endblock %}
|