{# La vidéo #}
{% if tutorial.lien is defined and tutorial.lien is not null %}
Vidéo
{% endif %}
{# Exploration des fichiers pour determination des differents type#}
{% set document = 0 %}
{% set image = 0 %}
{% if tutorial.tutorialFiles is defined and tutorial.tutorialFiles is not empty %}
{% for file in tutorial.tutorialFiles %}
{% if 'pdf' in file.mimeType %}
{% set document = 1 %}
{% elseif 'jpeg' in file.mimeType %}
{% set image = 1 %}
{% endif %}
{% endfor %}
{% endif %}
{# Les documents #}
{% if document %}
Les Documents
{% for file in tutorial.tutorialFiles %}
-
{% if 'pdf' in file.mimeType %}
{{ file.originalName }}
{% endif %}
{% endfor %}
{% endif %}
{# Les images #}
{% if image %}
Les Images
{% for image in tutorial.tutorialFiles %}
{% if 'jpeg' in image.mimeType %}
{% endif %}
{% endfor %}
{% endif %}
{# La description #}
{% if tutorial.description is defined and tutorial.description is not null and tutorial.description is not empty %}
{#
Description
#}
{{ tutorial.description | raw }}
{% endif %}