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

{% trans "All fundraisers" %}

{% autopaginate object_list 10 %} {% for offer in object_list %} {% with is_win=offer.is_win is_current=offer.is_current %} {% if is_current %}

{% trans "Current fundraiser:" %}

{% elif forloop.is_first %}

{% trans "Previous fundraisers:" %}

{% endif %}
{% offer_status offer %}
{% funding offer link=1 %}
{% offer_status_more offer %}
{% if is_current and not forloop.is_last %}

{% trans "Previous fundraisers:" %}

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