]> git.0d.be Git - django-panik-nonstop.git/blob - nonstop/templates/nonstop/quick_links.html
add links to nonstop home, and handle permissions
[django-panik-nonstop.git] / nonstop / templates / nonstop / quick_links.html
1 {% extends "base.html" %}
2 {% load i18n %}
3
4 {% block appbar %}
5 <h2>Nonstop</h2>
6 {% endblock %}
7
8 {% block more-user-links %}
9 {{ block.super }}
10 <a href="{% url 'nonstop-quick-links' %}">Gestion nonstop</a>
11 {% endblock %}
12
13 {% block content %}
14
15 <ul>
16  <li><a href="{% url 'nonstop-today' %}">Aujourd'hui</a> (avec des liens pour naviguer vers les autres jours)</li>
17  <li><a href="{% url 'artist-list' %}">Artistes</a> présents (un jour ou l'autre) dans le nonstop</li>
18  <li><a href="{% url 'nonstop-search' %}">Recherche</a> dans les pistes et artistes</li>
19 {% if perms.nonstop.add_track %}
20  <li><a href="{% url 'nonstop-upload-tracks' %}">Ajout de nouveaux morceaux</a></li>
21  <li><a href="{% url 'nonstop-recent-tracks' %}">Édition rapide de métadonnées de nouveaux morceaux</a> (langue, Instru, SABAM, CFWB)</li>
22  <li><a href="{% url 'nonstop-cleanup' %}">Nettoyage de vieux morceaux</a></li>
23 {% endif %}
24 </ul>
25 {% endblock %}