-{% with object.funding_payed.all as fundings %}
-
- <table class="wlfund">
- {% autopaginate fundings 10 %}
- {% for funding in fundings %}
- <tr class="funding-plus">
- <td class="oneline">{{ funding.payed_at.date }}</td>
- <td>
- {% if funding.name %}
- {{ funding.name }}
- {% else %}
- <em>{% trans "Anonymous" %}</em>
- {% endif %}
- </td>
- <td>{{ funding.amount }} zł</td>
- <td>
- {% for perk in funding.perks.all %}
- {{ perk.name }}{% if not forloop.last %},{% endif %}
- {% endfor %}
- </td>
- {% endfor %}
- </table>
-
- {% paginate %}
-{% endwith %}