e13e1ec189a6858558c27095d3ef65776b154521
[wolnelektury.git] / src / funding / templates / funding / includes / fundings.html
1 {% spaceless %}
2
3 {% load i18n %}
4 {% load pagination_tags %}
5
6 <table class="wlfund">
7
8 {% for funding in fundings %}
9     <tr class="funding-plus">
10         <td class="oneline">{{ funding.payed_at.date }}</td>
11         <td>
12             {% if funding.name %}
13                 {{ funding.name }}
14             {% else %}
15                 <em>{% trans "Anonymous" %}</em>
16             {% endif %}
17         </td>
18         <td>{{ funding.amount }}&nbsp;zł</td>
19         <td>&nbsp;
20             {% for perk in funding.perks.all %}
21                 {{ perk.name }}{% if not forloop.last %},{% endif %}
22             {% endfor %}
23         </td>
24 {% endfor %}
25 </table>
26
27 {% endspaceless %}{% paginate %}
28