post_notification_plain.html 589 B

123456789101112
  1. {% extends "_email/base_plain.html" %}
  2. {% load i18n %}
  3. {% load url from future %}
  4. {% block title %}{% trans %}New reply notification{% endtrans %}{% endblock %}
  5. {% block content %}
  6. {% trans username=user.username, author=author.username, thread=thread.name %}{{ username }}, you are receiving this message because {{ author }} has replied to thread "{{ thread }}" that you are watching.{% endtrans %}
  7. {% trans %}To go to this reply follow the link below:{% endtrans %}
  8. {{ board_address }}{% url 'thread_find' thread=thread.pk, slug=thread.slug, post=post.pk %}
  9. {% endblock %}