You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
{% extends "base.html" %}
|
|
|
|
|
|
{% block content %}
|
|
|
<h2>Estadísticas de Inscripciones por Usuario</h2>
|
|
|
|
|
|
<table class="table table-bordered">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
<th>Usuario</th>
|
|
|
<th>Eventos inscritos</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
{% for usuario in usuarios %}
|
|
|
<tr>
|
|
|
<td>{{ usuario.get_full_name|default:usuario.nombre }}</td>
|
|
|
<td>{{ usuario.num_eventos }}</td>
|
|
|
</tr>
|
|
|
{% endfor %}
|
|
|
</tbody>
|
|
|
</table>
|
|
|
{% endblock %}
|
|
|
|