clam2020/templates/participants.html

36 lines
855 B
HTML
Raw Normal View History

2018-10-05 16:13:30 +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">
<i class="glyphicon glyphicon-info-sign"></i> <strong>To be announced</strong><br/>
</div>
2018-10-05 16:13:30 +00:00
<table class="table table-striped">
<thead>
<tr>
<th>First name</th>
<th>Last name</th>
<th>Affiliation</th>
</tr>
</thead>
<tbody>
{% for reg in registros %}
<tr>
<td>{{ reg.nombre | title }}</td>
<td>{{ reg.apellido | title }}</td>
<td>{{ reg.afiliacion }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
{% endblock %}