{% extends 'pinax/notifications/body.txt' %}
{% load i18n %}

{% block message %}
    {% trans 'Welcome !' %}
    {% 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' %} <a href="{{ master_url }}{% url 'password_reset' %}" target="_blank">{% trans 'click here' %}</a>
{% endblock %}

