gmao/app_new/templates/pronote/personnels.html
2026-08-14 16:02:25 +00:00

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 %}