{% set title = "Statut de votre requête" %} {% extends 'Default/base-form.html.twig' %} {% import "Admin/Macros/statusIcon.html.twig" as statusIcon %} {% block content %}
{% block notif %}
{% set status = item.status %}
{% if status and status.icon %} {% endif %}
Requête n° : {{item.code}} Envoyée le : {{item.date|pretty_datetime}} Usager : {{item.name}} {% set typeLabel = "" %} {% if type == 'complaint' %} {% set typeLabel = "Réclamation" %} {% elseif type == 'denunciation' %} {% set typeLabel = "Dénunciation" %} {% elseif type == 'preaccount' %} {% set typeLabel = "Création de compte" %} {% endif %} Type : {{typeLabel}} Sujet : {{item.subject}}
{{item.status ? item.status.label : "En attente"}}
{% endblock %}
{% endblock %}