reply.txt 428 B

123456789101112
  1. {% extends "misago/emails/base.txt" %}
  2. {% load i18n %}
  3. {% block content %}
  4. {% blocktrans trimmed with user=recipient poster=user thread=thread %}
  5. {{ user }}, you are receiving this message because {{ poster }} has replied to the thread "{{ thread }}" that you are subscribed to.
  6. {% endblocktrans %}
  7. {% trans "To go to this reply, click the below link:" %}
  8. {{ SITE_ADDRESS }}{{ post.get_absolute_url }}
  9. {% endblock content %}