blob: 2c0a2518b5a6f892f8fda800eea1ae9b20fd88ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{% extends 'fundraising/index.html' %}
{% load humanize i18n static %}
{% block content %}
<h1>{% translate "Thank you for supporting the Django Project!" %}</h1>
<p>
{% blocktranslate trimmed %}
Your support is <strong>invaluable</strong> to continue the rapid development
of Django and helps the <strong>Django Fellowship</strong> program in particular.
{% endblocktranslate %}
</p>
<p>
{% blocktranslate trimmed %}
Please help us spread the word and encourage your friends and colleagues to
donate. Thank you!
{% endblocktranslate %}
</p>
<a href="https://twitter.com/intent/tweet?button_hashtag=SupportDjango&text=I+just+donated+to+support+the+Django+Software+Foundation.+Join+me!+https%3A%2F%2Fwww.djangoproject.com%2Ffundraising%2F"
class="twitter-hashtag-button" data-related="djangoproject">Tweet #SupportDjango</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
<p>
{% blocktranslate trimmed %}
You should receive an email shortly, with confirmation of your donation,
details of badges you can display to show you support of Django, managing your
donation, and how you can have your name or company displayed on the
Fundraising page and in the sidebar on the Django Project website.
{% endblocktranslate %}
</p>
<p>{% translate "Welcome aboard! ⛵️" %}</p>
<hr>
<p>
{% blocktranslate trimmed %}
If you have any <strong>problems</strong> with your donation please email
<a href="mailto:donations@djangoproject.com">donations@djangoproject.com</a> for help.
{% endblocktranslate %}
</p>
{% endblock %}
{% block content-extra %}{% endblock %}
|