15 lines
447 B
HTML
15 lines
447 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Personnels Pronote — GMAO{% endblock %}
|
|
{% block content %}
|
|
<div class="container-fluid">
|
|
<h1>Personnels Pronote</h1>
|
|
<table class="table">
|
|
<thead><tr><th>Nom</th><th>Rôle</th></tr></thead>
|
|
<tbody>
|
|
{% for p in personnels %}
|
|
<tr><td>{{ p.name }}</td><td>{{ p.role }}</td></tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% endblock %}
|