2024-09-10 02:37:18 +00:00
|
|
|
{% extends 'secondbase.html' %}
|
2024-09-12 20:35:52 +00:00
|
|
|
{% block content %}
|
|
|
|
|
<h2>Aquí puedes consultar quiénes están contribuyendo. Por cuestiones de privacidad, los nombres están modificados, pero si sabes, sabes</h2>
|
|
|
|
|
<table>
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th scope="col">Mapista</th>
|
|
|
|
|
<th scope="col">Marcador</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
2024-09-10 02:37:18 +00:00
|
|
|
{% for leader in leaders %}
|
2024-09-12 20:35:52 +00:00
|
|
|
<th scope="row">{{leader.username}}</th>
|
|
|
|
|
<th scope="row">{{leader.count}}</th>
|
2024-09-10 02:37:18 +00:00
|
|
|
{% endfor %}
|
2024-09-12 20:35:52 +00:00
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|