{% extends 'colleur/action.html' %} {% load static %} {% load customfilter %} {% block body %}
{% csrf_token %} {{ form.as_table }}
Créneaux de planches en {{matiere}}
{% for classe, planches in classesplanches %}
{{classe}}
{% for planche in planches %} {% endfor %}
Date Semaine jour Colleur heure Élève Classes Salle Commentaire colleur Commentaire
{{planche.get_date}} S{{planche.semaine.numero}} {{jours|lookup:planche.jour}} {{planche.colleur}} {{planche.heure|heurecolle}} {% if planche.eleve == None %}Aucun{% else %}{{planche.eleve}}{% endif %} {% for classe in planche.classes.all %}{% if forloop.first %}{{classe}}{% else %}/{{classe}}{% endif %}{% endfor %} {% if planche.salle %}{{planche.salle}}{% endif %} {% if planche.commentaire_colleur %}{{planche.commentaire_colleur}}{% endif %} {% if planche.commentaire %}{{planche.commentaire}}{% endif %}
{% endfor %} {% endblock %}