{% extends 'base.html' %} {% block title %}{{ album.name }}{% endblock %} {% block dialogs %}

Ajouter une partition à {{ album.name }}





Close

Supprimer l'album

Êtes vous sûr de vouloir supprimer cet album ?

Close
{% endblock %} {% block content %}

{{ album.name }}

{% if g.user %}
{% for album_user in album.users %} {% endfor %}
{% endif %}

{% if partitions|length != 0 %}
{% for partition in partitions | reverse %}
{{ partition["name"] }}
{{ partition["author"] }}
{% if partition["user_id"] == g.user.id or g.user.access_level == 1 %}
✏️
{% endif %}
{% endfor %}
{% else %}
Aucune partition disponible
{% endif %} {% endblock %}