2021-05-13 16:04:00 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-xs-12">
|
|
|
|
<h1><strong>Participants</strong></h1>
|
2021-06-16 17:05:57 +00:00
|
|
|
<!--<div class="alert alert-info">
|
2021-05-13 16:04:00 +00:00
|
|
|
<i class="glyphicon glyphicon-info-sign"></i> <strong>To be announced</strong><br/>
|
2021-06-16 17:05:57 +00:00
|
|
|
</div>-->
|
|
|
|
<ul class="nav nav-tabs">
|
|
|
|
{% for cat,val in registros %}
|
|
|
|
<li class="{{ loop.index == 1 ? 'active' }}"><a data-toggle="tab" href="#{{ loop.index }}">{{cat}}</a></li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<div class="tab-content">
|
|
|
|
{% for cat,val in registros %}
|
|
|
|
<section class="{{ loop.index == 1 ? 'in active' }} tab-pane fade" id="{{ loop.index }}">
|
|
|
|
<table class="table table-striped" >
|
2021-05-13 16:04:00 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2021-06-16 17:05:57 +00:00
|
|
|
<th>Nombre</th>
|
|
|
|
<th>Apellido</th>
|
|
|
|
<th>Afiliación</th>
|
2021-05-13 16:04:00 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2021-06-16 17:05:57 +00:00
|
|
|
{% for reg in val %}
|
2021-05-13 16:04:00 +00:00
|
|
|
<tr>
|
|
|
|
<td>{{ reg.nombre | title }}</td>
|
|
|
|
<td>{{ reg.apellido | title }}</td>
|
|
|
|
<td>{{ reg.afiliacion }}</td>
|
|
|
|
</tr>
|
2021-06-16 17:05:57 +00:00
|
|
|
{% endfor %}
|
|
|
|
|
2021-05-13 16:04:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2021-06-16 17:05:57 +00:00
|
|
|
</section>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
2021-05-13 16:04:00 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|