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

{{ title }}

{{ form.hidden_tag() }}
{{ form.type.label(class="form-label small") }} {{ form.type(class="form-select form-select-sm") }}
{{ form.label.label(class="form-label small") }} {{ form.label(class="form-control form-control-sm", placeholder="Ex: Vacances de Noël") }}
{{ form.start_date.label(class="form-label small") }} {{ form.start_date(class="form-control form-control-sm", type="date") }}
{{ form.end_date.label(class="form-label small") }} {{ form.end_date(class="form-control form-control-sm", type="date") }}
{% if form.zone %}
{{ form.zone.label(class="form-label small") }} {{ form.zone(class="form-select form-select-sm") }}
{% endif %} {% if form.is_exception %}
{{ form.is_exception(class="form-check-input") }} {{ form.is_exception.label(class="form-check-label small", text="Exception (collège ouvert)") }}
{% endif %}
{{ form.notes.label(class="form-label small") }} {{ form.notes(class="form-control form-control-sm", rows=2, placeholder="Notes…") }}
{% endblock %}