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