File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
main/templates/registration Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ {% load i18n %}
2+ <!DOCTYPE html>
3+ < html lang ="en ">
4+
5+ < head >
6+ < title > {{ site.name }} {% trans "registration" %}</ title >
7+ </ head >
8+
9+ < body >
10+ < p >
11+ {% blocktrans with site_name=site.name %}
12+ You (or someone pretending to be you) have asked to register an account at
13+ {{ site_name }}. If this wasn't you, please ignore this email
14+ and your address will be removed from our records.
15+ {% endblocktrans %}
16+ </ p >
17+ < p >
18+ {% blocktrans %}
19+ To activate this account, please click the following link within the next
20+ {{ expiration_days }} days:
21+ {% endblocktrans %}
22+ </ p >
23+
24+ < p >
25+ < a href ="http://{{site.domain}}{% url 'registration_activate' activation_key %} ">
26+ {{site.domain}}{% url 'registration_activate' activation_key %}
27+ </ a >
28+ </ p >
29+ < p >
30+ {% blocktrans with site_name=site.name %}
31+ Sincerely,
32+ {{ site_name }} Management
33+ {% endblocktrans %}
34+ </ p >
35+ </ body >
36+
37+ </ html >
You can’t perform that action at this time.
0 commit comments