clam2021/templates/participants.html

51 lines
1.3 KiB
HTML
Raw Permalink Normal View History

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>
<!--<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/>
</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>
<th>Nombre</th>
<th>Apellido</th>
<th>Afiliación</th>
2021-05-13 16:04:00 +00:00
</tr>
</thead>
<tbody>
{% 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>
{% endfor %}
2021-05-13 16:04:00 +00:00
</tbody>
</table>
</section>
{% endfor %}
</div>
2021-05-13 16:04:00 +00:00
</div>
</div>
{% endblock %}