{% extends "base.html" %} {% block title %}{{ title }} - Gestion Scolaire{% endblock %} {% block content %}
← Retour aux classes

{{ title }}

{% if is_edit %}

Modifiez les informations de votre classe

{% else %}

Créez une nouvelle classe pour vos élèves

{% endif %}
{{ form.hidden_tag() }} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{% if category == 'error' %} {% else %} {% endif %}

{{ message }}

{% endfor %}
{% endif %} {% endwith %}

🏫 Informations de la classe

{{ form.name(class="block w-full border border-gray-300 rounded-md px-3 py-2 focus:ring-blue-500 focus:border-blue-500", placeholder="Ex: 6ème A, 5ème B, Terminale S1...") }} {% if form.name.errors %}
{% for error in form.name.errors %}

{{ error }}

{% endfor %}
{% endif %}
{{ form.year(class="block w-full border border-gray-300 rounded-md px-3 py-2 focus:ring-blue-500 focus:border-blue-500", placeholder="Ex: 2024-2025") }} {% if form.year.errors %}
{% for error in form.year.errors %}

{{ error }}

{% endfor %}
{% endif %}
{{ form.description(class="block w-full border border-gray-300 rounded-md px-3 py-2 focus:ring-blue-500 focus:border-blue-500", rows="3", placeholder="Description de la classe, remarques particulières...") }} {% if form.description.errors %}
{% for error in form.description.errors %}

{{ error }}

{% endfor %}
{% endif %}
Annuler
{% endblock %}