]> git.0d.be Git - django-panik-emissions.git/blob - emissions/templates/emissions/days.html
db337356c20dc93d5d764aa26756edf3e791a18e
[django-panik-emissions.git] / emissions / templates / emissions / days.html
1 {% extends "base.html" %}
2
3 {% block appbar %}
4 <h2>Émissions</h2>
5 <span><a href=".">Par ordre alphabétique</a> - <a href="days">Par jour</a> - <a href="categories">Par genre</a>
6 - <a href="{% url 'news-list' %}">Toutes les actus</a></span>
7 {% endblock %}
8
9 {% block content %}
10
11 {% for day in days %}
12 <div class="section">
13 <h3>{{ day.datetime|date:"D" }}</h3>
14
15 <ul class="emission-list">
16 {% for schedule in day.schedules %}
17 <li>{{ schedule.datetime|date:"H:i" }} <a href="{{ schedule.emission.slug }}/">{{ schedule.emission.title }}</a></li>
18 {% endfor %}
19 </ul>
20 </div>
21
22 {% endfor %}
23
24 {% endblock %}