{% extends "base.html" %} {% load myTemplateTag %} {% block content %}
| Nom | Prenom | Téléphone | MàJ Le | Statut | Fichiers | Action | |
|---|---|---|---|---|---|---|---|
| {{ eleve.nom }} | {{ eleve.prenom }} | {{ responsable.mail }} | {{ responsable.telephone }} | {{ registerForm.dateMAJ }} | {% if registerForm.etat == 0 %} Créé {% elif registerForm.etat == 1 %} Envoyé {% elif registerForm.etat == 2 %} En Validation {% else %} Validé {% endif %} | {% for fichier in fichiers %} {{ fichier.nom }} {% endfor %} | |
|
{% if ficheInscriptions_list.has_previous %}
{% if ficheInscriptions_list.previous_page_number == 1 %}
<
1
{% else %}
<
1
...
{% endif %}
{% endif %}
{% if ficheInscriptions_list %}
{{ ficheInscriptions_list.number }}
{% else %}
{{ ficheInscriptions_list.number }}
{% endif %}
{% if ficheInscriptions_list.has_next %}
{% if ficheInscriptions_list.next_page_number == ficheInscriptions_list.paginator.num_pages %}
{{ ficheInscriptions_list.next_page_number }}
>
{% else %}
...
{{ ficheInscriptions_list.paginator.num_pages }}
>
{% endif %}
{% endif %}
|
|||||||