123456789 |
- {% extends "_email/base.html" %}
- {% block title %}{% trans %}You've been invited to private thread{% endtrans %}{% endblock %}
- {% block content %}
- <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>
- <p {{ style_p|safe }}>{% trans %}You can see this thread by clicking link below:{% endtrans %}</p>
- <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>
- {% endblock %}
|