1
0
mirror of https://gitlab.crans.org/mediatek/med.git synced 2025-02-21 12:21:23 +00:00
med/logs/templates/logs/stats_users.html

29 lines
660 B
HTML
Raw Normal View History

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 %}