periods.html
291 Bytes
{% extends "base_page.html" %}
{% block content %}
<table class="table table-hover">
<thead>
<tr>
<th scope="col">Période</th>
</tr>
</thead>
<tbody>
{% for period in periods %}
<tr>
<td>{{ period.name }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}