1 {% extends "base.html" %}
 
   2 {% load url from future %}
 
   4 {% load funding_tags %}
 
   6 {% block titleextra %}{% trans "Support Wolne Lektury" %}{% endblock %}
 
   9 <h1>{% trans "Support Wolne Lektury" %}</h1>
 
  11 {% for funding in object_list %}
 
  12     {% if funding.is_current %}
 
  13         <h2>{% trans "Current fundraiser:" %}</h2>
 
  14     {% elif forloop.is_first %}
 
  15         <h2>{% trans "Previous fundraisers:" %}</h2>
 
  17     <div class="white-box funding-{% if funding.is_current %}current{% else %}stale{% endif %}">
 
  18         <p class="normal-text">{{ funding.start }} – {{ funding.end }}
 
  19         {% if not funding.is_current %}
 
  20             ({% trans "funding closed" %})
 
  23         {% funding funding link=1 %}
 
  24         {% offer_detail_head funding %}
 
  26     {% if funding.is_current and not forloop.is_last %}
 
  27         <h2>{% trans "Previous fundraisers:" %}</h2>