{% extends "base.html" %} {% block title %}{{ title }} - Gestion Scolaire{% endblock %} {% block content %}
← Retour à l'exercice "{{ exercise.title }}"

{{ title }}

{{ assessment.title }} > {{ exercise.title }}

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

{{ error }}

{% endfor %}
{% endif %}

Ex: "Calcul de base", "Méthode", "Présentation"

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

{{ error }}

{% endfor %}
{% endif %}

Ex: "Calculer", "Raisonner", "Communiquer"

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

{{ error }}

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

{{ error }}

{% endfor %}
{% endif %}

Types de notation

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

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

Annuler {{ form.submit(class="px-4 py-2 bg-blue-600 text-white rounded-md text-sm font-medium hover:bg-blue-700 transition-colors") }}
{% endblock %}