forked from orson/bachemap
19 lines
518 B
HTML
19 lines
518 B
HTML
{% extends 'secondbase.html' %}
|
|
{% 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>
|
|
{% for leader in leaders %}
|
|
<th scope="row">{{leader.username}}</th>
|
|
<th scope="row">{{leader.count}}</th>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
{% endblock %} |