{% load i18n %}{% blocktrans with hostname=request.get_host %}A new account was created for you on {{ hostname }}{% endblocktrans %}
{% if user.username %}
	{% trans "Username" %} : {{ user.username }}{% endif %}
	{% trans "Email" %} : {{ user.email }}
	{% trans "First name" %} : {{ user.first_name }}
	{% trans "Last name" %} : {{ user.last_name }}

{% blocktrans %}Please click on the following link to set your password:{% endblocktrans %}

	{{ reset_url }}
