{% extends 'common/list-base.html.twig' %} {% block metaTitle %}Music - Cd{% endblock %} {% block body %} {% include 'embed/breadcrumb/breadcrumb.html.twig' with {'items': {'home': {'active': false, 'path': 'homepage', 'label': 'Kollect'}, 'cds': {'active': true, 'path': '', 'label': 'CD'} }} %}

Liste des CD

{% include 'embed/alerts/alerts.html.twig' %}
Liste des CD Ajouter un CD
{% for cd in cds %} {% include 'embed/modal/confirm-deletion.html.twig' with {'link': path('cd_delete', {id: cd.id}), 'name': cd.name, 'title': 'du cd', 'id': cd.id} %} {% endfor %}
Nom Disponibilité Image Artiste Style Actions
Nom
{{ cd.name }} {% if cd.isPreOrder is same as (true) %} {{ include('embed/badges/preorder.html.twig') }} {% else %} {{ include('embed/badges/available.html.twig') }} {% endif %} {{ cd.name }} {{ cd.artist.name }} {{ cd.style.name }} {% include 'embed/svg/edit.html.twig' %} {% include 'embed/svg/delete.html.twig' %}
{% endblock %}