projects.html
292 Bytes
{% extends "base_page.html" %}
{% block content %}
<table class="table table-hover">
<thead>
<tr>
<th scope="col">Projet</th>
</tr>
</thead>
<tbody>
{% for project in projects %}
<tr>
<td>{{ project.name }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}