{% extends 'base.html' %}
{% block title %}{{ album.name }}{% endblock %}
{% block dialogs %}
{% 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 }}