20 lines
563 B
Plaintext
20 lines
563 B
Plaintext
{% load i18n %}{% autoescape off %}
|
|
|
|
{% trans "DeviceHub" as site %}
|
|
|
|
{% blocktrans %}You're receiving this email because your user account at {{site}} has been activated.{% endblocktrans %}
|
|
|
|
{% trans "Your username is:" %} {{ user.username }}
|
|
|
|
{% trans "Please go to the following page and choose a password:" %}
|
|
{% block reset_link %}
|
|
{{ protocol }}://{{ domain }}{% url 'login:password_reset_confirm' uidb64=uid token=token %}
|
|
{% endblock %}
|
|
|
|
|
|
{% trans "Thanks for using our site!" %}
|
|
|
|
{% blocktrans %}The {{site}} team{% endblocktrans %}
|
|
|
|
{% endautoescape %}
|