{% extends 'admin.html.twig' %} {% block title %}Admin - Détail Historique{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %}

Détail de l'historique

Détail de l'historique

Historique

{##}
Id {{ historique.id }}
Nom {{ historique.nom }}
Fonction {{ historique.fonction }}
Image {{ historique.nom }}
Date de début {% if historique.startDate %}{{ historique.startDate|date('Y-m-d H:i:s') }}{% endif %}
Date de fin {% if historique.endDate %}{{ historique.endDate|date('Y-m-d H:i:s') }}{% endif %}
Date de création {% if historique.dateCreation %}{{ historique.dateCreation|date('Y-m-d H:i:s') }}{% endif %}
{#Back to the list#}
{{ form_start(delete_form) }} {##} {{ form_end(delete_form) }}
{% endblock %}