]> git.0d.be Git - panikweb.git/blob - panikweb/templates/emissions.html
move static & templates to panikweb project directory
[panikweb.git] / panikweb / templates / emissions.html
1 {% extends "base.html" %}
2 {% load paniktags i18n %}
3 {% block bodyID %}Emissions{% endblock %}
4 {% block title %}Émissions{% endblock %}
5 {% block toptitle %}
6 <h1 class="top"><a href="{% url 'grid' %}">{% trans 'Program' %}</a></h1>
7 {% endblock %}
8 {% block nav %}
9         {% emission_nav with klass="emissions" %}
10         <span class="bg-title" style="display: none"><a>{% trans 'Emissions' %}</a></span>
11 {% endblock %}
12 {% block main %}
13 <div class="emissions">
14
15         <div class="wrapper">
16                 <ul class="custom list columns padded">
17                 {% for emission in emissions %}
18                         <li class="item {% for category in emission.categories.all %} {{ category|slugify }}{% endfor %}{% if emission.archived %} archived{% endif %}"
19                         >{% emission_resume %}</li>
20                 {% endfor %}
21                 </ul>
22         </div>
23 </div>
24 {% endblock %}