Merge branch 'master' into funding
[wolnelektury.git] / apps / funding / templates / funding / thanks.html
1 {% extends "base.html" %}
2 {% load i18n %}
3 {% load fnp_share %}
4 {% load polls_tags %}
5
6 {% block titleextra %}{% trans "Thank you for your support!" %}{% endblock %}
7
8 {% block body %}
9
10 <h1>{% trans "Thank you!" %}</h1>
11 <div class="white-box normal-text">
12
13 {% trans "Thank you for your support!" %}
14
15 {% if offer.is_win %}
16     <p>{% trans "Full amount was successfully raised!" %}</p>
17
18     <p>{% blocktrans with due=offer.due end=offer.end %}The fundraiser
19             ends on {{ end }}. The book will be published by {{ due }}.{% endblocktrans %}</p>
20 {% else %}
21     <p>
22         {% blocktrans with b=offer.title %}Your donation will be spent on digitizing, compiling and
23         publishing the book {{ b }} in multiple formats. We will contact you if you qualify for perks.{% endblocktrans %}
24     </p>
25 {% endif %}
26
27 <p>{% include "funding/snippets/any_remaining.html" %}
28
29 <a href="{% url 'infopage' 'wesprzyj' %}">{% trans "Learn more" %}</a>.</p>
30
31 {% url 'funding_current' offer.slug as current %}
32 <p><a href="{{ current }}">{% trans "Go back to the current fundraiser." %}</a></p>
33
34
35 <h3>{% trans "Tell your friends!" %}</h3>
36 <p class="share">{% share current _("I support Wolne Lektury.") "big" %}</p>
37
38 {% if offer.poll %}
39     <h3>{% trans "Vote for a book for the next fundraiser" %}</h3>
40     {% poll offer.poll %}
41 {% endif %}
42 </div>
43
44
45 {% endblock %}