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

Liste des artistes

{% include 'embed/alerts/alerts.html.twig' %}
Liste des artistes Ajouter un artiste
{% for artist in artists %} {% include 'embed/modal/confirm-deletion.html.twig' with {'link': path('artist_delete', {id: artist.id}), 'name': artist.name, 'title': 'de l\'artiste', 'id': artist.id} %} {% endfor %}
Nom Image Nbre de CD Companie Actions
{{ artist.name }} {{ artist.name }} {{ artist.numberOfCd }} {{ artist.company.name }} {% include 'embed/svg/edit.html.twig' %} {% if artist.numberOfCd is same as (0) %} {% include 'embed/svg/delete.html.twig' %} {% endif %}
{% endblock %}