{% extends 'base.html.twig' %} {% block title %}Portalents - les candidats{% endblock %} {% block body %}

Liste des candidats

{% if is_granted('ROLE_ADMIN') %} {% endif %} {% for profile in profiles %} {% if is_granted('ROLE_ADMIN') %} {% endif %} {% endfor %}
Nom
Date de saisie
Consulter/Modifier le profil
Recruter le candidat
Supprimer le profil
{{ profile.firstname ~ " " ~ profile.lastname }}
{{ profile.date|format_datetime('short', 'none', locale='fr') }}
{% if is_granted('ROLE_ADMIN') %}
{% endif %}
{% endblock %}