{% extends 'base.html.twig' %} {% block title %}Liste des formateurs {% endblock %} {% block body %}

 /  Tableau de bord  / 

Formateurs

{# #}
{# common flash messages bloc #} {{ include('common/flash_messages_bloc.html.twig') }}

Liste des formateurs

{# show data #}
{% for instructor in instructors %} {% endfor %}
Informations Action
image
{{ instructor }}
Email: {{ instructor.email }}
Téléphone: {{ instructor.phone }}
{% if instructor.address %}Adresse: {{ instructor.address }} {% endif %}
{% if instructor.customer %} {% else %} {% endif %} {# #}
{# include instructor delete modal #}
{{ include('common/_modal.html.twig',{ modalTitle: 'Supprimer un formateur', btnTitle: 'Confirmer la suppression', btnId: 'confirm_delete', btnCancelId: 'btn_cancel_delete', modalContent: '

Vous êtes sur le point de supprimer définitivement le formateur .

Sa suppression entraînera la destruction de toutes les données associées à ce formateur.

Cette action est irréversible.

' }) }}
{% endblock %} {% block pageJavascript %} {% endblock %}