1 {% extends "base/base.html" %}
3 {% load pagination_tags %}
5 {% block titleextra %}{% trans "All fundraisers" %}{% endblock %}
7 {% block bodyid %}funding-offer-list{% endblock %}
10 <h1>{% trans "All fundraisers" %}</h1>
12 {% autopaginate object_list 10 %}
13 {% if page_obj.number == 1 %}
14 <h2>{% trans "Current fundraiser:" %}</h2>
17 {% for offer in object_list %}
18 {% with is_win=offer.is_win is_current=offer.is_current %}
19 {% if not is_current and forloop.first and page_obj.number == 1 %}
20 <p class="normal-text">{% trans "No fundraiser is currently running." %}</p>
21 <h2>{% trans "Previous fundraisers:" %}</h2>
26 <div class="white-box normal-text">
28 <h3>{% trans "Help free the book!" %}</h3>
29 {{ offer.description|safe }}
32 {{ offer.status_more }}
35 {% if is_current and not forloop.last %}
36 <h2>{% trans "Previous fundraisers:" %}</h2>