You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
464 B
14 lines
464 B
{% load i18n %}
|
|
{% load url from future %}
|
|
|
|
{% blocktrans with recipient=message.recipient sender=message.sender %}Hello {{ recipient }},
|
|
|
|
you received a private message from {{ sender }} with
|
|
the following contents:{% endblocktrans %}
|
|
|
|
{{ message.body|safe }}
|
|
|
|
--
|
|
{% blocktrans %}Sent from {{ site_url }}{% endblocktrans %}
|
|
{% trans "Inbox" %}: {{ site_url }}{% url 'messages_inbox' %}
|
|
{% trans "Reply" %}: {{ site_url }}{% url 'messages_reply' message.pk %} |