{% extends 'admin.html.twig' %} {% block body %}
Liste des candidats ({{ totalResults }} candidats)
Exporter la liste des candidats
FullName/Email/CNE/Tel :
Etablissement :
Académie :
Province :
Type de Bac :
Statut :
Type de Bac :
Statut inscription :
Paiment :
Les listes :
{% if results|length > 0 %} {% for user in results %}
  • {{ user.fullName }} {% for application in user.applications %} -{{ application.id }}- {% if application.status == 4 %} ({{ "Validé" }}) {% elseif application.status == -1 %} ({{ "Rejeté" }}) {% else %} ({{ "En cours" }}) {% endif %} {% endfor %}

    {% for application in user.applications %} {% for document in application.documents %} {% if document.status == 4 %} {% set status = "Validé" %} {% elseif document.status == -1 %} {% set status = "Rejeté" %} {% else %} {% set status = "En cours" %} {% endif %} {% set path = "uploads" ~ "/" ~ user.id ~ "/" ~ application.id ~ "/" ~ document.fileName %} {% if document.status == 4 or document.status == -1 %} {% if document.extension == 'pdf' %} {{ document.documentType.name }} {% else %} {{ document.documentType.name }} {% endif %} {% else %} {% if document.extension == 'pdf' %} {{ document.documentType.name }} {% else %} {{ document.documentType.name }} {% endif %} {% endif %} {% endfor %} {% endfor %}
  • {% for application in user.applications %} {% for document in application.documents %} {% set path = "uploads" ~ "/" ~ user.id ~ "/" ~ application.id ~ "/" ~ document.fileName %}
    {% if document.extension != 'pdf'%} ... {% else %} {{document.documentType.name}} {% endif %}
    {% endfor %} {% endfor %}

{% endfor %} {% else %}
Aucun candidat trouvé.
{% endif %}
{# display navigation #} {% if totalResults > limit %} {% endif %}
{% set userId = app.request.get('userId') %} {% set message = app.request.get('message') %}
{% endblock %} {% block javascripts %} {% endblock %}