{% extends "base.html" %} {% block titre %}Liste des partitions{% endblock %} {% block content %}

Liste des partitions

{% if suppression %}

{{ suppression }}

Ajouter un morceau {% for part in partitions %} {% if not user.is_authenticated %}

{{ part.nom }} - {{ part.auteur }}

{% endif %} {% if user.is_authenticated %}

{{ part.nom }} - {{ part.auteur }}

{% endif %} {% if user.profile.is_chef %}

Supprimer

{% endif %} {% endfor %} {% endblock %}