{% extends "base.html" %} {% block title %}Plannings — GMAO{% endblock %} {% block content %}

Plannings des salles

Connexion Pronote
{% if rooms %}
{% for room in rooms %}
{{ room.name }}

{% if room.building %} 📍 {{ room.building.name }}
{% endif %} {% if room.room_type %} {{ room.room_type.name }} {% endif %}

{% if room.room_type and room.room_type.is_teaching %} {% else %} Salle non d'enseignement {% endif %}
{% endfor %}
{% else %}
Aucune salle d'enseignement disponible.
{% endif %} {% if current_user.role == 'admin' %}
📊 Statistiques

{{ rooms|length }}

Salles totales

{{ rooms|selectattr('room_type.is_teaching')|list|length }}

Salles enseignement

{{ rooms|selectattr('room_type.is_teaching')|list|length * 35 }}

Cours/semaine

{{ rooms|selectattr('room_type.is_teaching')|list|length * 5 }}

Créneaux/semaine
{% endif %}
{% endblock %}