{% extends "base.html" %} {% block title %}Fermetures — GMAO Collège{% endblock %} {% block content %}

Fermetures

{% if upcoming %}
À venir
{% for c in upcoming %}
{{ c.label }}
{{ c.start_date|date_fmt }} → {{ c.end_date|date_fmt }} {{ c.duration_days }}j
{{ c.type_label }} {% if c.zone %}Zone {{ c.zone }}{% endif %}
{% if c.is_exception %}⚠ Exception (collège ouvert){% endif %} {% if c.notes %}{{ c.notes }}{% endif %}
{% endfor %} {% endif %} {% if past %}
Passées
{% for c in past %}
{{ c.label }} {{ c.start_date|date_fmt }} → {{ c.end_date|date_fmt }}
{% endfor %} {% endif %} {% if not upcoming and not past %}

Aucune fermeture enregistrée

{% endif %}
{% endblock %}