added.txt 483 B

1234567891011121314
  1. {% extends "misago/emails/base.txt" %}
  2. {% load i18n %}
  3. {% block content %}
  4. {% blocktrans trimmed with user=recipient.username sender=sender.username thread=thread.title %}
  5. {{ user }}, you are receiving this message because {{ sender }} has invited you to participate in private thread "{{ thread }}".
  6. {% endblocktrans %}
  7. {% blocktrans trimmed %}
  8. To go to this thread click the link below:
  9. {% endblocktrans %}
  10. {{ SITE_ADDRESS }}{{ thread.get_absolute_url }}
  11. {% endblock content %}