{% extends "layout.html" %}
{% block body %}
<h1>Registrants</h1>
<table>
<thead>
<tr>
<th>Name</th>
<th>Sport</th>
</tr>
</thead>
<tbody>
{% for name in registrants %}
<td>{{ name }}</td>
<td>{{ registrants[name] }}</td>
{% endfor %}
</tbody>
</table>
{% endblock %}