gmao/app_new/templates/pronote/professeurs.html

16 lines
450 B
HTML
Raw Normal View History

2026-08-14 18:02:25 +02:00
{% extends "base.html" %}
{% block title %}Professeurs Pronote — GMAO{% endblock %}
{% block content %}
<div class="container-fluid">
<h1>Professeurs Pronote</h1>
<table class="table">
<thead><tr><th>Nom</th><th>Matière</th></tr></thead>
<tbody>
{% for p in profs %}
<tr><td>{{ p.name }}</td><td>{{ p.matiere }}</td></tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}