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

{{ title }}

{{ form.hidden_tag() }}
{{ 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.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.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.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.1") }} {% if form.coefficient.errors %}
{% for error in form.coefficient.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 %}
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 %}