Browse Source

Lista de deportistas

main
Celestino Rey 8 months ago
parent
commit
92809a3fdc
1 changed files with 14 additions and 1 deletions
  1. +14
    -1
      src/templates/macrociclos/lista_deportistas.html

+ 14
- 1
src/templates/macrociclos/lista_deportistas.html View File

@ -25,7 +25,20 @@
<div class="app-card app-card-notification shadow-sm mb-4"> <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>
</div><!--//container-fluid--> </div><!--//container-fluid-->
{% endblock %} {% endblock %}

Loading…
Cancel
Save