2021-03-21 18:43:14 +00:00
|
|
|
{% extends 'email/html_layout.html' %}
|
2021-03-21 16:13:21 +00:00
|
|
|
{% load i18n %}
|
2021-03-21 18:43:14 +00:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<p>
|
|
|
|
{% blocktrans %}You're invited to join {{ site_name }}!{% endblocktrans %}
|
|
|
|
</p>
|
|
|
|
|
|
|
|
{% trans "Join Now" as text %}
|
|
|
|
{% include 'email/snippets/action.html' with path=invite_link text=text %}
|
|
|
|
|
|
|
|
<p>
|
|
|
|
{% url 'code-of-conduct' as coc_path %}
|
|
|
|
{% url 'about' as about_path %}
|
2021-10-15 20:42:32 +00:00
|
|
|
{% blocktrans %}Learn more <a href="https://{{ domain }}{{ about_path }}">about {{ site_name }}</a>.{% endblocktrans %}
|
2021-03-21 18:43:14 +00:00
|
|
|
</p>
|
|
|
|
{% endblock %}
|