{% extends 'pinax/notifications/body.html' %} {% load i18n %} {% block subject %}{% trans 'New Material !' %}{% endblock %} {% block message %}
{% blocktrans with first_name=recipient.first_name last_name=recipient.last_name %} Hi {{ first_name }} {{ last_name }}, {% endblocktrans %}
{% blocktrans with first_name=author.first_name last_name=author.last_name training_name=training.name %} {{ first_name }} {{ last_name }} has shared a new training with you: “{{ training_name }}”. {% endblocktrans %}
{% trans 'You may now access it through your interface. Don’t forget to synchronize your box first if needed.' %}
{% endblock %}