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