da50f13a76db3b6c6896d0109d605f0b14608162
[wolnelektury.git] / apps / funding / templates / funding / offer_detail.html
1 {% extends "base.html" %}
2 {% load url from future %}
3 {% load i18n %}
4 {% load funding_tags %}
5 {% load pagination_tags %}
6 {% load fnp_share %}
7
8
9 {% block titleextra %}{{ object }}{% endblock %}
10
11 {% block metadescription %}Wesprzyj kolejną publikację Wolnych Lektur!{% endblock %}
12
13
14 {% block body %}
15
16 <h1>{{ object }}</h1>
17
18 <div class="normal-text">{{ object.description|safe }}</div>
19
20 {% funding object %}
21 <div class="white-box">
22     <div class="normal-text">
23     {% offer_status object %}
24     {% offer_status_more object %}
25     <p><a href="{% url 'infopage' 'wesprzyj' %}">{% trans "Learn more" %}</a>.</p>
26     </div>
27     
28
29     {% if object.is_current %}
30         <div class="normal-text">
31             <h3>{% trans "Support the publication" %}</h3>
32             <form action="" method="post">
33                 {% csrf_token %}
34                 <table>
35                 {{ form.as_table }}
36                 <tr><td></td><td>
37                     <button type="submit" style="border: none; background: none; cursor: pointer">
38                     <img alt="{% trans 'Donate!' %}" src="http://static.payu.com/pl/standard/partners/buttons/payu_account_button_01.png" />
39                     </button>
40                     </td></tr>
41                 </table>
42             </form>
43         </div>
44
45         {% url 'funding_current' object.slug as current %}
46         <p class="normal-text">{% trans "Tell your friends!" %}</p>
47         <p class="share">{% share current _("Support Wolne Lektury!") "big" %}</p>
48     {% endif %}
49
50     <p class="normal-text"><a href="{% url 'funding' %}">{% trans "See all fundraisers." %}</a></p>
51
52 </div>
53
54
55 <h2>{% trans "Supporters" %}:</h2>
56
57 <div class="white-box normal-text">
58 {% with object.funding_payed.all as fundings %}
59     
60     <table class="wlfund">
61     {% autopaginate fundings 10 %}
62     {% for funding in fundings %}
63         <tr class="funding-plus">
64             <td><div>{{ funding.payed_at.date }}</div></td>
65             <td><div>
66                 {% if funding.name %}
67                     {{ funding.name }}
68                 {% else %}
69                     <em>{% trans "Anonymous" %}</em>
70                 {% endif %}
71             </div></td>
72             <td><div>{{ funding.amount }} zł</div></td>
73             <td><div>
74                 {% for perk in funding.perks.all %}
75                     {{ perk.name }}{% if not forloop.last %},{% endif %}
76                 {% endfor %}&nbsp;
77             </div></td>
78     {% endfor %}
79     </table>
80     
81     {% paginate %}
82 {% endwith %}
83 </div>
84
85 {% endblock %}