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

{{ _("Ajouter un album au groupe %(name)s", name=groupe.name) }}


Close

{{ _("Supprimer le groupe") }}

{{ _("Êtes vous sûr de vouloir supprimer ce groupe ? Cela supprimera les albums sous-jacents et leurs partitions si personne ne les a rejoints (indépendamment du groupe).") }}

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

{{ groupe.name }}

{% if g.user %}
{% for groupe_user in groupe.users %} {% endfor %}
{% endif %}

{% if groupe.albums|length != 0 %}
{% for album in groupe.albums | reverse %}
{{ album.name }}
{% endfor %}
{% else %}
{% set create %} {{ _("En créer un") }} {% endset %}
{{ _("Aucun album disponible. %(create)s", create=create) }}
{% endif %} {% endblock %}