2017-12-08 14:08:12 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-xs-12">
|
2024-07-29 03:57:51 +00:00
|
|
|
<h1><strong>Participants</strong></h1>
|
2017-12-08 14:08:12 +00:00
|
|
|
<table class="table table-striped">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2024-07-29 03:57:51 +00:00
|
|
|
<th>First name</th>
|
|
|
|
<th>Last name</th>
|
2017-12-08 14:08:12 +00:00
|
|
|
<th>Affiliation</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for reg in registros %}
|
|
|
|
<tr>
|
2024-07-29 03:57:51 +00:00
|
|
|
<td>{{ reg.nombre | title }}</td>
|
|
|
|
<td>{{ reg.apellido | title }}</td>
|
2017-12-08 14:08:12 +00:00
|
|
|
<td>{{ reg.afiliacion }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
2024-07-29 03:57:51 +00:00
|
|
|
|
|
|
|
|
2017-12-08 14:08:12 +00:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
2024-07-29 03:57:51 +00:00
|
|
|
{% endblock %}
|