{% extends 'pinax/notifications/body.html' %} {% load i18n %} {% block subject %}{% trans 'Welcome !' %}{% endblock %} {% block message %}
{% blocktrans with first_name=recipient.first_name last_name=recipient.last_name %} Hi {{ first_name }} {{ last_name }}, {% endblocktrans %}
{% blocktrans with platform_name=instance_name %} Your account on {{ platform_name }} has been created. {% endblocktrans %}
{% trans 'YOUR ACCOUNT INFORMATION' %}
{% blocktrans with username=recipient.username %}
Login: {{ username }}
{% endblocktrans %}
{% trans 'You will soon be invited to join your first session.' %}
{% trans 'If you wish to modify your password' %} {% trans 'click here' %}.
{% endblock %}