44cd82815d3755a9907af6c30690a625833fe812
[wolnelektury.git] / apps / funding / templates / funding / offer_list.html
1 {% extends "base.html" %}
2 {% load url from future %}
3 {% load i18n %}
4 {% load funding_tags %}
5
6 {% block titleextra %}{% trans "Support Wolne Lektury" %}{% endblock %}
7
8 {% block body %}
9 <h1>{% trans "Support Wolne Lektury" %}</h1>
10
11 <ul class="plain">
12 {% for funding in object_list %}
13     <li class="white-box funding-{% if funding.is_current %}current{% else %}stale{% endif %}">
14         <p class="normal-text">{{ funding.start }} – {{ funding.end }}
15         {% if not funding.is_current %}
16             ({% trans "funding closed" %})
17         {% endif %}
18         </p>
19         {% funding funding link=1 %}
20         {% offer_detail_head funding %}
21     </li>
22 {% endfor %}
23 </ul>
24
25 {% endblock %}