-<h1>{% trans "Support Wolne Lektury" %}</h1>
-
-<ul class="plain">
-{% for funding in object_list %}
- <li class="white-box funding-{% if funding.is_current %}current{% else %}stale{% endif %}">
- <p class="normal-text">{{ funding.start }} – {{ funding.end }}
- {% if not funding.is_current %}
- ({% trans "funding closed" %})
+<h1>{% trans "All fundraisers" %}</h1>
+
+
+{% autopaginate object_list 10 %}
+{% for offer in object_list %}
+{% with is_win=offer.is_win is_current=offer.is_current %}
+
+ {% if is_current %}
+ <h2>{% trans "Current fundraiser:" %}</h2>
+ {% elif forloop.is_first %}
+ <h2>{% trans "Previous fundraisers:" %}</h2>
+ {% endif %}
+
+ {% funding offer link=1 show_title_calling=False %}
+
+ <div class="white-box normal-text">
+ {% if is_current %}
+ <h3>{% trans "Help free the book!" %}</h3>
+ {{ offer.description|safe }}