{% extends 'TdbBaseBundle::layout.html.twig' %} {% block title %}Musiques{% endblock %} {% block body %}

Gestion de la musique « {{ music }} »

{% if music.url is not null %} Voir la vidéo{% endif %} {% if is_granted("ROLE_EVENT_ADMIN") %} Editer {% if music.isDeletableSafely %} Supprimer{% endif %} {% endif %}

Liste des clips

{% for clip in music.clips if clip.deleted == false and is_granted("show", clip) %} {% endfor %}
Nom Evènement Actions
{{ clip.name }} {{ clip.event.name }} {% if is_granted("show", clip) %}Voir le clip{% endif %} {% if is_granted("edit", clip) %}Editer{% endif %}
{% endblock %}