023d34427284fe067f1aaad758b2c4e595a0f299
[wolnelektury.git] / src / funding / templates / funding / email / end.txt
1 {% extends "funding/email/base.txt" %}
2 {% load i18n %}
3
4
5 {% block body %}{% if is_win %}
6 {% blocktrans %}we succesfully collected the full amount needed
7 for the book you contributed to:{% endblocktrans %}
8
9   {{ offer.author }} – {{ offer.title }}
10   http://{{ site.domain }}{{ offer.get_absolute_url }}
11
12 {% blocktrans %}We will now digitize it, develop and publish it in the library,
13 in various formats, free for everyone.{% endblocktrans %}
14 {% if funding.name %}
15 {% blocktrans %}Your name will be included on the list of contributors, irrespectively
16 of the amount of your contribution.{% endblocktrans %}
17 {% endif %}{# funding.name #}{% if funding.perks.exists %}
18 {% blocktrans %}We will contact you again about details needed
19 to deliver your perks.{% endblocktrans %}
20 {% endif %}{# funding.perks.exists #}{% if remaining %}
21 {% blocktrans with r=remaining %}All of the money remaining after this fundraiser ({{ r }} PLN)
22 will be spent on liberating other books still waiting for publication.{% endblocktrans %}
23 {% blocktrans %}You can see how we're spending these funds on this page:{% endblocktrans %}
24 http://{{ site.domain }}{% url 'funding_wlfund' %}
25 {% endif %}{# remaining #}{% else %}{# !is_win #}
26 {% blocktrans %}unfortunately, we were unable to collect the full amount needed
27 for the book you contributed to:{% endblocktrans %}
28
29   {{ offer.author }} – {{ offer.title }}
30   http://{{ site.domain }}{{ offer.get_absolute_url }}
31 {% if remaining %}
32 {% blocktrans with x=remaining %}All of the money we collected in this fundraiser ({{ x }} PLN)
33 will be spent on liberating other books still waiting for publication.{% endblocktrans %}
34 {% blocktrans %}You can see how we're spending these funds on this page:{% endblocktrans %}
35 http://{{ site.domain }}{% url 'funding_wlfund' %}
36 {% endif %}{# remaining #}{% endif %}{# is_win #}{% if current %}
37 {% blocktrans %}If you'd like to help liberate another book, or invite your friends
38 to do so, we're currently raising money for:{% endblocktrans %}
39
40   {{ current.author }} – {{ current.title }}
41   http://{{ site.domain }}{% url 'funding_current' %}
42 {% endif %}{% endblock %}