fbc71add240953becdfb028e958ce32ea952823e
[wolnelektury.git] / src / funding / templates / funding / email / published.txt
1 {% extends "funding/email/base.txt" %}
2 {% load i18n %}
3 {% block body %}
4 {% blocktrans %}we have just published the book you contributed to:{% endblocktrans %}
5
6   {{ author }} – {{ offer.book.title }}
7   https://{{ site.domain }}{{ offer.book.get_absolute_url }}
8
9 {% if book.preview %}
10 Dzięki Tobie, niedługo będzie bezpłatnie dla wszystkich w wielu formatach. Tymczasem możesz przeczytać ją już teraz jako prapremierę.
11 {% if funding.user %}Wystarczy, że zalogujesz się na Wolnych Lekturach (jako {{ funding.user.username }}).
12 {% else %}Wystarczy, że zalogujesz się na Wolnych Lekturach i wejdziesz pod ten adres, aby uzyskać wcześniejszy dostęp:
13 https://{{ site.domain }}{% url 'funding_claim' funding.notify_key %}
14 {% endif %}
15 {% else %}
16 {% blocktrans %}Thanks to you, it is now available for free,
17 in various formats, to everyone.{% endblocktrans %}
18 {% endif %}
19
20 {% if current %}
21 {% blocktrans %}If you'd like to help liberate another book, or invite your friends
22 to do so, we're currently raising money for:{% endblocktrans %}
23
24   {{ current.author }} – {{ current.title }}
25   https://{{ site.domain }}{% url 'funding_current' %}
26 {% endif %}{% endblock %}