|
|
|
@ -25,7 +25,20 @@ |
|
|
|
|
|
|
|
|
|
|
|
<div class="app-card app-card-notification shadow-sm mb-4"> |
|
|
|
|
|
|
|
<table class="table app-table-hover mb-0 text-left"> |
|
|
|
<thead> |
|
|
|
<tr> |
|
|
|
<th class="cell">Nombre</th> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
{% for deportista in deportistas %} |
|
|
|
<tbody> |
|
|
|
<tr> |
|
|
|
<td class="cell"><a href="{% url 'macrociclos:detalle_deportistas' deportista.id %}">{{ deportista.nombre }}</a></td> |
|
|
|
</tr> |
|
|
|
</tbody> |
|
|
|
{% endfor %} |
|
|
|
</table> |
|
|
|
</div> |
|
|
|
</div><!--//container-fluid--> |
|
|
|
{% endblock %} |