{% extends 'colleur/action.html' %}
{% load static %}
{% load customfilter %}
{% block body %}
{% get_mathjax as latex %}
{% if form %}
| Ajouter un programme de colle |
{% include "colleur/programmeform.html" %}
{% endif %}
| Programmes de la classe {{classe}} en {{matiere}} |
| Semaines |
Titre |
Détails |
Fichier |
{% if isprof %}
Modifier |
Supprimer |
{% endif %}
{% for programme in programmes %}
{% for sem in programme.semaine.all %}{{sem}}{% if not forloop.last%} {% endif %}{% endfor %} |
{{programme.titre}} |
{% if latex %}{{programme.detail}}{% else %}{{programme.detail|linebreaksbr}}{% endif %} |
{% if programme.fichier %}
{% if jpeg %} {% else %} {% endif %} |
{% else %}
|
{% endif %}
{% if isprof %}
Modifier |
Supprimer |
{% endif %}
{% endfor %}
{% endblock %}
{% block javascript %}
{% get_mathjax as latex %}
{% if latex %}
{% include "mathjax.html" %}
{% endif %}
{% endblock %}