{% extends "base_page.html" %}
{% block content %}
<table class="table table-hover">
  <thead>
  <tr>
    <th scope="col">Fonction</th>
  </tr>
  </thead>
  <tbody>
  {% for capacity in capacities %}
  <tr>
    <td>{{ capacity.name }}</td>
  </tr>
  {% endfor %}
  </tbody>
</table>
{% endblock %}