35 lines
983 B
HTML
35 lines
983 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block titre %}Liste des partitions{% endblock %}
|
|
|
|
{% block content %}<h1>Liste des partitions</h1>
|
|
{% if suppression %}
|
|
<p>{{ suppression }}</p>
|
|
{% endif %}
|
|
|
|
{% if user.is_authenticated %}
|
|
<h3><a href="{% url "partitions.views.ajouter_morceau" %}">Ajouter un morceau</a></h3>
|
|
{% endif %}
|
|
|
|
|
|
<h3 class="part">Partitions actives</h3>
|
|
<ul class="filelist">
|
|
{% for part in active_partitions %}
|
|
{% include "partitions/liste_item.html" with part=part %}
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
<h3 class="part">Partitions à venir</h3>
|
|
<ul class="filelist">
|
|
{% for part in incoming_partitions %}
|
|
{% include "partitions/liste_item.html" with part=part %}
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
<h3 class="part">Archives</h3>
|
|
<ul class="filelist">
|
|
{% for part in old_partitions %}
|
|
{% include "partitions/liste_item.html" with part=part %}
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|