periods.html
441 Bytes
{% extends "base_page.html" %}
{% block content %}
<!-- Invisible span to definte wich ul and a in the navbar are actived -->
<span id="nav_actived" style="display: none">admin,liste_periodes</span>
<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 %}