private_thread_reply_notification.html 740 B

123456789
  1. {% extends "_email/base.html" %}
  2. {% block title %}{% trans %}New reply notification{% endtrans %}{% endblock %}
  3. {% block content %}
  4. <p {{ style_p|safe }}>{% trans username=user.username, author=author.username, thread=thread.name %}{{ username }}, you are receiving this message because {{ author }} has replied to private thread "{{ thread }}" that you are watching.{% endtrans %}</p>
  5. <p {{ style_p|safe }}>{% trans %}To go to this reply follow the link below:{% endtrans %}</p>
  6. <a href="{{ board_address }}{% url 'private_thread_find' thread=thread.pk, slug=thread.slug, post=post.pk %}" {{ style_link|safe }}>{{ board_address }}{% url 'private_thread_find' thread=thread.pk, slug=thread.slug, post=post.pk %}</a>
  7. {% endblock %}