]> git.0d.be Git - panikweb.git/blob - panikweb_templates/templates/week.html
Many small fixes for small screen (paddings)
[panikweb.git] / panikweb_templates / templates / week.html
1 {% extends "base.html" %}
2 {% load paniktags %}
3 {% block bodyID %}Program{% endblock %}
4 {% block title %}Programme{% endblock %}
5 {% block nav %}
6         {% emission_nav with klass="week" %}
7         <div class="program">
8                 <nav class="center">
9                         <ul class="custom distributed">
10                                 <li>
11                                         <a 
12                                                 href="{% url 'program_week' year=year week=week|add:"-1" %}" 
13                                                 class="icon-chevron-sign-left"
14                                                 ></a>
15                                 </li>
16                                 <li>Semaine {{ week }}</li>
17                                 <li>
18                                         <a 
19                                                 href="{% url 'program_week' year=year week=week|add:"1" %}" 
20                                                 class="icon-chevron-sign-right"
21                                                 ></a>
22                                 </li>
23                         </ul>
24                 </nav>
25         </div>
26         {% weekview year=year week=week fragment="nav" %}
27 {% endblock %}
28 {% block main %}
29 <div class="padded">
30         <div class="wrapper">
31                 {% weekview year=year week=week fragment="program" %}
32         </div>
33 </div>
34 {% endblock %}