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