{% extends 'base.html.twig' %} {% block title %}Album{% endblock %} {% block body %}
Name | {{ album.name }} |
---|---|
Artiste | {{ album.artist.fullname}} |
Edition | {{ album.edition }} |
Date de sortie | {{ album.releaseDate ? album.releaseDate|date('d-m-Y') : '' }} |
Styles | {% for style in album.style %} {% if loop.index != 1 %},{% endif %} {{ style.name }} {% endfor %} |
Support | {% for support in album.support %} {% if loop.index !=1 %},{% endif %} {{ support.name }} {% endfor %} |
Mise en ligne | {{ album.createdAt ? album.createdAt|date('d-m-Y') : '' }} |
Musiques |
|