Merge branch 'reflow'
[wolnelektury.git] / src / 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 <a href='//nowoczesnapolska.org.pl/pomoz-nam/wesprzyj-nas/' target="_blank" style='float:right;border:1px solid #ddd;padding: 1em;margin:0 0 1em 1em;background:#eee;'><img src='//nowoczesnapolska.org.pl/wp-content/themes/koed/annoy/procent.png' alt='1%' style='float:left;margin-right: 1em;margin-top:.2em;'>Możesz też przekazać<br/>1% podatku na rozwój biblioteki. &rarr;</a>
14
15 <p>{% trans "Thank you for your support!" %}</p>
16 <p>{% blocktrans %}We will contact you if you qualify for perks.{% endblocktrans %}</p>
17
18 {% if offer.is_win %}
19     <p>{% trans "Full amount was successfully raised!" %}</p>
20
21     <p>{% blocktrans with b=offer.title %}Your donation will be spent on digitizing, compiling and
22     publishing the book {{ b }} in multiple formats.{% endblocktrans %}</p>
23
24 {% else %}
25
26     <p>{% blocktrans with b=offer.title %}If the full amount needed is raised,
27     your donation will be spent on digitizing, compiling and
28     publishing the book {{ b }} in multiple formats.{% endblocktrans %}</p>
29
30 {% endif %}
31
32
33 <p>{% include "funding/snippets/any_remaining.html" %}
34
35 <a href="{% url 'infopage' 'wesprzyj' %}">{% trans "Learn more" %}</a>.</p>
36
37 {% url 'funding_current' offer.slug as current %}
38 <p><a href="{{ current }}">{% trans "Go back to the current fundraiser." %}</a></p>
39
40
41 <h3>{% trans "Tell your friends!" %}</h3>
42 <p class="share">{% share current _("I support Wolne Lektury.") "big" %}</p>
43
44 {% if offer.poll %}
45     <h3>{% trans "Vote for a book for the next fundraiser" %}</h3>
46     {% poll offer.poll %}
47 {% endif %}
48 </div>
49
50
51 {% endblock %}