* Change snippet url to current host * Change site.domain to host in page.js * Remove useless condition * Change hostname in email messages * Remove `hostname` command * Fix startup_checks.sh * Remove unused variable from startup_checks.py
11 lines
523 B
Plaintext
11 lines
523 B
Plaintext
{% load account %}{% user_display user as user_display %}{% load i18n %}{% autoescape off %}{% blocktrans with site_name=current_site.name site_domain=request.get_host %}Hi there,
|
|
|
|
You're receiving this email because {{ user_display }} has listed this email as a valid contact address for their account.
|
|
|
|
To confirm this is correct, go to {{ activate_url }}
|
|
{% endblocktrans %}
|
|
{% blocktrans with site_name=current_site.name site_domain=request.get_host %}Thank you,
|
|
{{ site_name }}
|
|
{% endblocktrans %}
|
|
{% endautoescape %}
|