mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-01-24 01:36:25 +01:00
19 lines
489 B
HTML
19 lines
489 B
HTML
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block header %}
|
||
|
<h1>{% block title %}{{ album["name"] }}{% endblock %}</h1>
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
{% if partitions|length != 0 %}
|
||
|
{% for partition in partitions %}
|
||
|
<a href="{{ album['uuid'] }}/{{ partition['uuid'] }}">
|
||
|
<div class="partition-cover" id="partition-{{ partition['uuid'] }}">
|
||
|
{{ partition["name"] }}
|
||
|
</div>
|
||
|
</a>
|
||
|
{% endfor %}
|
||
|
{% else %}
|
||
|
<div>Aucune partition disponible</div>
|
||
|
{% endif %}
|
||
|
{% endblock %}
|