-
Notifications
You must be signed in to change notification settings - Fork 285
/
Copy pathevent_deployed.html
96 lines (76 loc) · 3.06 KB
/
event_deployed.html
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{% load i18n %}
<p>{% trans "Hi there!" %}</p>
<p>
{% trans "Congratulations! Your application to organize Django Girls workshop in your city has been accepted. We’re delighted to have you with us!" %}
</p>
<p>{% trans "Below you can find all details and access to your chapter." %}</p>
<h3>{% trans "1) Email address" %}</h3>
<p>{% blocktrans with email=event.email %}Your e-mail is {{ email }}.{% endblocktrans %}</p>
<p>
{% blocktrans with email=event.email %}
You can login here: <a href="http://mail.djangogirls.org/">http://mail.djangogirls.org/</a><br/>
Username: {{ email }} (@djangogirls.com works too!)<br/>
{% endblocktrans %}
{% spaceless %}
{% if password %}
{% trans "Password:" %} {{ password }}<br/>
{% else %}
{% trans "Previous organizers should have password to this account. Let us know if you need to reset it." %}
{% endif %}
{% endspaceless %}
</p>
<p>
{% trans "You can also add this inbox to your email client:" %}<br/>
- IMAP: imap.gmail.com (SSL, port 993)<br/>
- SMTP: smtp.gmail.com (SSL, port 465)<br/>
</p>
<p>
{% trans "Or you can forward incoming mail to your private email account by following these instructions." %}
</p>
<h3>{% trans "2) Website" %}</h3>
<p>
{% blocktrans trimmed with page_url=event.page_url %}
Your website address is <a href="https://djangogirls.org/{{ page_url }}">https://djangogirls.org/{{ page_url }}</a>
{% endblocktrans %}
</p>
<p>
{% trans "You should receive a separate email with auto generated password and instructions to login." %}
</p>
<p>
{% blocktrans trimmed %}
Your website is currently hidden for public, you can only see it if you’re logged in. If you want to make it
available for everyone, go here and edit your website changing the “is live” option.
{% endblocktrans %}
</p>
<p>
{% blocktrans trimmed %}
More instructions on editing your website:
<a href="https://organize.djangogirls.org/website/">https://organize.djangogirls.org/website/</a>
{% endblocktrans %}
</p>
<h3>{% trans "3) Organizers community" %}</h3>
<p>
{% blocktrans trimmed %}
Django Girls has a growing community of more than 2346 organizers.
If you are a new organizer and not already Django Girls Slack, please reach out to [email protected] and we will invite you to join -- this is where you can chat with other organisers, ask for their help or advice. Use it wisely and plenty!
{% endblocktrans %}
</p>
<h3>{% trans "4) Postponing or canceling" %}</h3>
<p>
{% blocktrans trimmed %}
If you need to cancel or postpone your event, it’s not a problem at all!
Please let us know by sending an email and we’ll help.
{% endblocktrans %}
</p>
<h3>{% trans "5) Need more help?" %}</h3>
<p>
{% blocktrans trimmed %}
Don’t forget about Organiser’s FAQ, Manual or to post questions to our Google Group of Django Girls Organizers or
Slack channel - there are always more people there that can help you! :)
{% endblocktrans %}
</p>
<p>{% trans "Good luck!" %}</p>
<p>
{% trans "Hugs, rainbows and sunshines!" %}<br/>
{% trans "Django Girls team" %}
</p>