Remove funding.offer.due.
[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 <p>{% trans "Thank you for your support!" %}</p>
14 <p>{% blocktrans %}We will contact you if you qualify for perks.{% endblocktrans %}</p>
15
16 {% if offer.is_win %}
17     <p>{% trans "Full amount was successfully raised!" %}</p>
18
19     <p>{% blocktrans with b=offer.title %}Your donation will be spent on digitizing, compiling and
20     publishing the book {{ b }} in multiple formats.{% endblocktrans %}</p>
21
22 {% else %}
23
24     <p>{% blocktrans with b=offer.title %}If the full amount needed is raised,
25     your donation will be spent on digitizing, compiling and
26     publishing the book {{ b }} in multiple formats.{% endblocktrans %}</p>
27
28 {% endif %}
29
30
31 <p>{% include "funding/snippets/any_remaining.html" %}
32
33 <a href="{% url 'infopage' 'wesprzyj' %}">{% trans "Learn more" %}</a>.</p>
34
35 {% url 'funding_current' offer.slug as current %}
36 <p><a href="{{ current }}">{% trans "Go back to the current fundraiser." %}</a></p>
37
38
39 <h3>{% trans "Tell your friends!" %}</h3>
40 <p class="share">{% share current _("I support Wolne Lektury.") "big" %}</p>
41
42 {% if offer.poll %}
43     <h3>{% trans "Vote for a book for the next fundraiser" %}</h3>
44     {% poll offer.poll %}
45 {% endif %}
46 </div>
47
48
49 {% endblock %}