{% extends "base/base.html" %} {% load i18n %} {% load pagination_tags %} {% block titleextra %}{% trans "All fundraisers" %}{% endblock %} {% block bodyid %}funding-offer-list{% endblock %} {% block body %}

{% trans "All fundraisers" %}

{% autopaginate object_list 10 %} {% if page_obj.number == 1 %}

{% trans "Current fundraiser:" %}

{% endif %} {% for offer in object_list %} {% with is_win=offer.is_win is_current=offer.is_current %} {% if not is_current and forloop.first and page_obj.number == 1 %}

{% trans "No fundraiser is currently running." %}

{% trans "Previous fundraisers:" %}

{% endif %} {{ offer.list_bar }}
{% if is_current %}

{% trans "Help free the book!" %}

{{ offer.description|safe }} {% endif %} {{ offer.status }} {{ offer.status_more }}
{% if is_current and not forloop.last %}

{% trans "Previous fundraisers:" %}

{% endif %} {% endwith %} {% endfor %} {% paginate %} {% endblock %}