{% extends 'base.html' %} {% block title %}{{ album.name }}{% endblock %} {% block dialogs %} {% include 'components/add_partition.html' %} Close

{{ _("Delete l'album") }}

{{ _("Do you really want to delete this album?") }}

Close
{% if groupe %} {% set current_url = "/groupe/" + groupe.uuid + "/" + album.uuid %} {% else %} {% set current_url = "/albums/" + album.uuid %} {% endif %} {% with share_link=config.BASE_URL+current_url, share_qrlink=current_url + "/qr" %} {% include 'components/share_dialog.html' %} {% endwith %} {% endblock %} {% block content %}

{% if groupe %}{{ groupe.name }} / {% endif %} {{ 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["has_attachment"] %}
📎
{% endif %} {% if partition["user_id"] == g.user.id or g.user.access_level == 1 %}
✏️
{% endif %}
{% endfor %}
{% else %}
{{ _("No available scores") }}
{% endif %} {% endblock %}