Basic crowdfunding.
[wolnelektury.git] / apps / funding / templates / funding / wlfund.html
1 {% extends "base.html" %}
2
3 {% block titleextra %}Fundusz Wolnych Lektur{% endblock %}
4
5 {% block body %}
6
7 <h1>Fundusz Wolnych Lektur</h1>
8 <p>Suma: {{ amount }}</p>
9
10 <ul class="plain">
11     {% for entry in log %}
12     <li class="white-box normal-text funding-plus">
13         {{ entry.end }} +{{ entry.sum }}
14         <span style="float:right">Częściowa zbiórka na: {{ entry }}</span>
15     </li>
16     {% endfor %}
17 </ul>
18
19
20 {% endblock %}