post_notification_html.html 766 B

1234567891011
  1. {% extends "_email/base_html.html" %}
  2. {% load i18n %}
  3. {% load url from future %}
  4. {% block title %}{% trans %}New reply notification{% endtrans %}{% endblock %}
  5. {% block content %}
  6. <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 thread "{{ thread }}" that you are watching.{% endtrans %}</p>
  7. <p {{ style_p|safe }}>{% trans %}To go to this reply follow the link below:{% endtrans %}</p>
  8. <a href="{{ board_address }}{% url 'thread_find' thread=thread.pk, slug=thread.slug, post=post.pk %}" {{ style_link|safe }}>{{ board_address }}{% url 'thread_find' thread=thread.pk, slug=thread.slug, post=post.pk %}</a>
  9. {% endblock %}