mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-01-24 09:46:25 +01:00
22 lines
495 B
HTML
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 %} |