{% extends 'base.html.twig' %} {% block title %}displayClaims{% endblock %} {% block body %} {% include '/loader/loader.html.twig' %}
{% for message in app.flashes('success') %}
{{ message }}
{% endfor %} {% for message in app.flashes('warning') %}
{{ message }}
{% endfor %}

Documents

{% if mission.getmissionDocumentsByType("Form")|length == 0 %}
Aucun document
{% endif %} {% for item in mission.getmissionDocumentsByType("Form") %}
{{ item.name|length > 30 ? '...' ~ item.name|slice(item.name|length - 27, item.name|length): item.name }}

{{ item.addedAt()| date("j/m/Y") }}

{% endfor %}
{% if mission.getmissionDocumentsByType("Devis")|length == 0 %}
Aucun document
{% endif %} {% for item in mission.getmissionDocumentsByType("Devis") %}
{{ item.name|length > 30 ? '...' ~ item.name|slice(item.name|length - 27, item.name|length): item.name }}

{{ item.addedAt()| date("j/m/Y") }}

{% endfor %}
{% if mission.getmissionDocumentsByType("Photo")|length == 0 %}
Aucun document
{% endif %} {% for item in mission.getmissionDocumentsByType("Photo") %}
{{ item.name|length > 30 ? '...' ~ item.name|slice(item.name|length - 27, item.name|length): item.name }}

{{ item.addedAt()| date("j/m/Y") }}

{% endfor %}
{% if mission.getmissionDocumentsByType("Vidéo")|length == 0 %}
Aucun document
{% endif %} {% for item in mission.getmissionDocumentsByType("Vidéo") %}
{{ item.name|length > 30 ? '...' ~ item.name|slice(item.name|length - 27, item.name|length): item.name }}

{{ item.addedAt()| date("j/m/Y") }}

{% endfor %}
{% endblock %} {% block javascripts %} {% endblock %}