{% extends 'pinax/notifications/body.html' %} {% load i18n %} {% block subject %}{% trans 'Keep on moving !' %}{% endblock %} {% block message %}
{% blocktrans with first_name=recipient.first_name last_name=recipient.last_name %} Hey {{ first_name }} {{ last_name }}, {% endblocktrans %}
{% blocktrans with training_name=training.name session_date=session.start_date trainer_first_name=session.trainer.first_name trainer_last_name=session.trainer.last_name %} We’re glad you attended the {{ training_name }} session on the {{ session_date }} with {{ trainer_first_name }} {{ trainer_last_name }}. All your session documents, notes & results are now available. {% endblocktrans %}
{% trans 'Click the button below to acces it.' %}
{% endblock %} {% block extras %} {% trans 'Get my content !' as button_label %} {% include 'pinax/notifications/button.html' %} {% endblock %}