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

{% block message %}
    {% trans 'New Material !' %}
    {% 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 %}
