private_thread_invite.html 715 B

123456789
  1. {% extends "_email/base.html" %}
  2. {% block title %}{% trans %}You've been invited to private thread{% 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 invited you to participate in private thread "{{ thread }}".{% endtrans %}</p>
  5. <p {{ style_p|safe }}>{% trans %}You can see this thread by clicking link below:{% endtrans %}</p>
  6. <a href="{{ board_address }}{{ url('private_thread', thread=thread.pk, slug=thread.slug) }}" {{ style_link|safe }}>{{ board_address }}{{ url('private_thread', thread=thread.pk, slug=thread.slug) }}</a>
  7. {% endblock %}