{% extends "base.html" %} {% block title %}{{ title }} - Gestion Scolaire{% endblock %} {% block content %}
{% if is_edit %} ← Retour à l'évaluation {% else %} ← Retour aux évaluations {% endif %}

{{ title }}

{% if is_edit %}

Modifiez votre évaluation complète avec exercices et éléments de notation

{% else %}

Créez votre évaluation complète avec exercices et éléments de notation

{% endif %}
{{ form.hidden_tag() }}

📝 Informations de l'évaluation

{{ form.title(class="block w-full border border-gray-300 rounded-md px-3 py-2 focus:ring-blue-500 focus:border-blue-500") }} {% if form.title.errors %}
{% for error in form.title.errors %}

{{ error }}

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

{{ error }}

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

{{ error }}

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

{{ error }}

{% endfor %}
{% endif %}
{{ form.coefficient(class="block w-full border border-gray-300 rounded-md px-3 py-2 focus:ring-blue-500 focus:border-blue-500", step="0.5") }} {% if form.coefficient.errors %}
{% for error in form.coefficient.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") }} {% if form.description.errors %}
{% for error in form.description.errors %}

{{ error }}

{% endfor %}
{% endif %}

🏃 Exercices

Aucun exercice ajouté. Utilisez le bouton ci-dessous pour commencer.

💡 Guide rapide

Points : Notation classique (ex: 2.5/4 points)

Score : Évaluation par niveaux (0=non acquis, 1=en cours, 2=acquis, 3=expert, .=non évalué)

Ordre : Les exercices et éléments seront affichés dans l'ordre numérique

{% if is_edit %} Annuler {% else %} Annuler {% endif %}
{% endblock %}