8795332e685cf75a23c11ead7b03ef74729070cf
[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 {% funding object show_title=False %}
19 <div class="white-box">
20     <div class="funding-details-intro">
21         {% if object.cover %}
22             <img src="{{ object.cover.url }}" class="funding-cover"/>
23         {% endif %}
24         <div class="normal-text">
25         {{ object.description|safe }}
26         {% offer_status object %}
27         {% offer_status_more object %}
28         <p><a href="{% url 'infopage' 'wesprzyj' %}">{% trans "Learn more" %}</a>.</p>
29         </div>
30         
31         <div style="clear:both;"></div>
32     </div>
33
34     {% if object.is_current %}
35         <div class="normal-text">
36             <h3>{% trans "Support the publication" %}</h3>
37             <form action="" method="post">
38                 {% csrf_token %}
39                 <table>
40                 {{ form.as_table }}
41                 <tr><td></td><td>
42                     <button type="submit" style="border: none; background: none; cursor: pointer">
43                     <img alt="{% trans 'Donate!' %}" src="http://static.payu.com/pl/standard/partners/buttons/payu_account_button_01.png" />
44                     </button>
45                     </td></tr>
46                 </table>
47             </form>
48         </div>
49
50         {% url 'funding_current' object.slug as current %}
51         <p class="normal-text">{% trans "Tell your friends!" %}</p>
52         <p class="share">{% share current _("Support Wolne Lektury!") "big" %}</p>
53     {% endif %}
54
55     <p class="normal-text"><a href="{% url 'funding' %}">{% trans "See all fundraisers." %}</a></p>
56
57 </div>
58
59
60 <h2>{% trans "Supporters" %}:</h2>
61
62 <div class="white-box normal-text">
63 {% with object.funding_payed.all as fundings %}
64     
65     <table class="wlfund">
66     {% autopaginate fundings 10 %}
67     {% for funding in fundings %}
68         <tr class="funding-plus">
69             <td><div>{{ funding.payed_at.date }}</div></td>
70             <td><div>
71                 {% if funding.name %}
72                     {{ funding.name }}
73                 {% else %}
74                     <em>{% trans "Anonymous" %}</em>
75                 {% endif %}
76             </div></td>
77             <td><div>{{ funding.amount }} zł</div></td>
78             <td><div>
79                 {% for perk in funding.perks.all %}
80                     {{ perk.name }}{% if not forloop.last %},{% endif %}
81                 {% endfor %}&nbsp;
82             </div></td>
83     {% endfor %}
84     </table>
85     
86     {% paginate %}
87 {% endwith %}
88 </div>
89
90 {% endblock %}