Minor html changes

This commit is contained in:
augustin64 2022-10-02 20:59:37 +02:00
parent 2a0787441c
commit f34ffa205e
2 changed files with 15 additions and 13 deletions

View File

@ -47,6 +47,6 @@
{% endfor %} {% endfor %}
</div> </div>
{% else %} {% else %}
<div>Aucune partition disponible</div> <div id="partitions-grid">Aucune partition disponible</div>
{% endif %} {% endif %}
{% endblock %} {% endblock %}

View File

@ -1,7 +1,7 @@
{% extends 'base.html' %} {% extends 'base.html' %}
{% block header %} {% block header %}
<h1>{% block title %}Albums{% endblock %}</h1> <h1 id="album-name">{% block title %}Albums{% endblock %}</h1>
{% endblock %} {% endblock %}
{% block header_actions %} {% block header_actions %}
@ -17,6 +17,7 @@
<input type="checkbox" id="online-search" name="online-search" value="online-search" checked="on"> <input type="checkbox" id="online-search" name="online-search" value="online-search" checked="on">
<label for="online-search" id="online-search-label">Recherche en ligne</label> <label for="online-search" id="online-search-label">Recherche en ligne</label>
</form> </form>
<section id="albums">
{% if albums|length != 0 %} {% if albums|length != 0 %}
{% for album in albums %} {% for album in albums %}
<a href="{{ album['uuid'] }}"> <a href="{{ album['uuid'] }}">
@ -28,4 +29,5 @@
{% else %} {% else %}
<div>Aucun album disponible</div> <div>Aucun album disponible</div>
{% endif %} {% endif %}
</section>
{% endblock %} {% endblock %}