ernestophone.ens.fr/templates/partitions/liste.html

36 lines
968 B
HTML
Raw Normal View History

2015-03-17 19:03:51 +01:00
{% extends "base.html" %}
2015-03-17 19:03:51 +01:00
{% block titre %}Liste des partitions{% endblock %}
2015-03-17 19:03:51 +01:00
{% 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 %}
2016-06-22 14:09:41 +02:00
<h3>Partitions actives</h3>
{% for part in active_partitions %}
<ul class="filelist">
{% include "partitions/liste_item.html" with part=part %}
</ul>
{% endfor %}
<h3>Partitions à venir</h3>
{% for part in incoming_partitions %}
<ul class="filelist">
{% include "partitions/liste_item.html" with part=part %}
</ul>
{% endfor %}
<h3>Archives</h3>
{% for part in old_partitions %}
<ul class="filelist">
{% include "partitions/liste_item.html" with part=part %}
</ul>
{% endfor %}
2015-03-17 19:03:51 +01:00
{% endblock %}