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 {% funding offer link=1 show_title_calling=False %}
27 <div class="white-box normal-text">
29 <h3>{% trans "Help free the book!" %}</h3>
30 {{ offer.description|safe }}
32 {% offer_status offer %}
33 {% offer_status_more offer %}
36 {% if is_current and not forloop.last %}
37 <h2>{% trans "Previous fundraisers:" %}</h2>