32 lines
702 B
HTML
32 lines
702 B
HTML
|
{% extends "layout.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div class="row">
|
||
|
<div class="col-xs-12">
|
||
|
<h1><strong>Participants</strong></h1>
|
||
|
<table class="table table-striped">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>Firstname</th>
|
||
|
<th>Lastname</th>
|
||
|
<th>Affiliation</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for reg in registros %}
|
||
|
<tr>
|
||
|
<td>{{ reg.nombre }}</td>
|
||
|
<td>{{ reg.apellido }}</td>
|
||
|
<td>{{ reg.afiliacion }}</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
|
||
|
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
|
||
|
{% endblock %}
|