{% extends 'base.html.twig' %} {% block title %}Tutoriel{% endblock %} {% block title_page %}Tutoriel{% endblock %} {% block container_start %}
#{{ tutorial.id }}
{{ tutorial.name }}
{% if is_granted("ROLE_EDIT_TUTORIAL") %} {% endif %} {% if is_granted("ROLE_DELETE_TUTORIAL") %} {{ include('package_tutorial/tutorial/_delete_form.html.twig') }} {% endif %}
{# 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 %}
{{ image.name }}
{% 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 %}
{% endblock %}