Blame view

app/main/templates/periods.html 441 Bytes
6cbf4b75   hitier   Periods list
1
2
{% extends "base_page.html" %}
{% block content %}
9f86aeea   Anais Amato   Change navbar act...
3
4

<!-- Invisible span to definte wich ul and a in the navbar are actived -->
fd63e06e   Anais Amato   update coloration...
5
<span id="nav_actived" style="display: none">admin,liste_periodes</span>
9f86aeea   Anais Amato   Change navbar act...
6

6cbf4b75   hitier   Periods list
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<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 %}