added.html 645 B

123456789101112131415161718192021
  1. {% extends "misago/emails/base.html" %}
  2. {% load i18n misago_capture %}
  3. {% block content %}
  4. {% capture trimmed as thread_title %}
  5. <strong>{{ thread.title }}</strong>
  6. {% endcapture %}
  7. {% blocktrans trimmed with user=recipient.username sender=sender.username thread=thread_title %}
  8. {{ user }}, you are receiving this message because {{ sender }} has invited you to participate in private thread {{ thread }}.
  9. {% endblocktrans %}
  10. <br>
  11. <br>
  12. {% blocktrans trimmed %}
  13. To go to this thread click the link below:
  14. {% endblocktrans %}
  15. <br>
  16. <br>
  17. <a href="{{ SITE_ADDRESS }}{{ thread.get_absolute_url }}">{{ thread.title }}</a>
  18. <br>
  19. {% endblock content %}