1 {% extends "base.html" %}
 
   2 {% load url from future %}
 
   4 {% load funding_tags %}
 
   5 {% load pagination_tags %}
 
   7 {% block titleextra %}{% trans "All fundraisers" %}{% endblock %}
 
   9 {% block bodyid %}funding-offer-list{% endblock %}
 
  12 <h1>{% trans "All fundraisers" %}</h1>
 
  15 {% autopaginate object_list 10 %}
 
  16 {% for offer in object_list %}
 
  17 {% with is_win=offer.is_win is_current=offer.is_current %}
 
  20         <h2>{% trans "Current fundraiser:" %}</h2>
 
  21     {% elif forloop.is_first %}
 
  22         <h2>{% trans "Previous fundraisers:" %}</h2>
 
  25     <div class="normal-text">
 
  26         {% offer_status offer %}
 
  29     {% funding offer link=1 %}
 
  32     <div class="white-box normal-text">
 
  33         {% offer_status_more offer %}
 
  37     {% if is_current and not forloop.is_last %}
 
  38         <h2>{% trans "Previous fundraisers:" %}</h2>