partitioncloud-server/partitioncloud/templates/albums/index.html
2022-08-13 23:36:10 +02:00

22 lines
495 B
HTML

{% extends 'base.html' %}
{% block header %}
<h1>{% block title %}Albums{% endblock %}</h1>
{% endblock %}
{% block content %}
{% if albums|length != 0 %}
{% for album in albums %}
<a href="{{ album['uuid'] }}">
<div class="album-cover" id="album-{{ album['id'] }}">
{{ album["name"] }}
</div>
</a>
{% endfor %}
{% else %}
<div>Aucun album disponible</div>
{% endif %}
<a href="create-album">
<button id="new-album">Nouvel Album</button>
</a>
{% endblock %}