private_thread_invite.txt 551 B

12345678910
  1. {% extends "_email/base.txt" %}
  2. {% block title %}{% trans %}You've been invited to private thread{% endtrans %}{% endblock %}
  3. {% block content %}
  4. {% trans username=user.username, author=author.username, thread=thread.name %}{{ username }}, you are receiving this message because {{ author }} has invited you to participate in private thread "{{ thread }}".{% endtrans %}
  5. {% trans %}You can see this thread by clicking link below:{% endtrans %}
  6. {{ board_address }}{% url 'private_thread' thread=thread.pk, slug=thread.slug %}
  7. {% endblock %}