{% extends 'base.html.twig' %} {% block title %} Détail {{ support }} {% endblock %} {% block body %}

 /  Tableau de bord

 /  Supports  / 

{% if support %} Détail {{ support }} {% endif %}

Détail {{ support }}

{% if support.createdBy != app.user %} Demandé par {{ support.createdBy|capitalize }} {# {% else %} Moi #}
{% endif %} A été créé le: {{ support.createdAt|date("d/m/Y - H:i") }}
Statut: {% if support.statut == 'Résolu' %} {% elseif support.statut == 'En cours de traitement' %} {% else %} {% endif %} {{ support.statut }}

Détail de la demande

{{support.description|raw}}
{% if support.response %}

Réponse

{{support.response|raw}}
{% endif %}
{% endblock %}