Petite erreur de HTML

This commit is contained in:
Martin Pépin 2016-06-24 11:09:30 +02:00
parent 99704649b6
commit 6330d2d428

View file

@ -13,23 +13,23 @@
<h3>Partitions actives</h3>
<ul class="filelist">
{% for part in active_partitions %}
<ul class="filelist">
{% include "partitions/liste_item.html" with part=part %}
</ul>
{% endfor %}
</ul>
<h3>Partitions à venir</h3>
<ul class="filelist">
{% for part in incoming_partitions %}
<ul class="filelist">
{% include "partitions/liste_item.html" with part=part %}
</ul>
{% endfor %}
</ul>
<h3>Archives</h3>
<ul class="filelist">
{% for part in old_partitions %}
<ul class="filelist">
{% include "partitions/liste_item.html" with part=part %}
</ul>
{% endfor %}
</ul>
{% endblock %}