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