forked from mirrors/bookwyrm
7f75cd329a
trying to use less jargon
10 lines
336 B
HTML
10 lines
336 B
HTML
{% extends 'email/text_layout.html' %}
|
|
{% load i18n %}
|
|
{% block content %}
|
|
{% blocktrans %}You're invited to join {{ site_name }}! Click the link below to create an account.{% endblocktrans %}
|
|
|
|
{{ invite_link }}
|
|
|
|
{% blocktrans %}Learn more about {{ site_name }}:{% endblocktrans %} https://{{ domain }}{% url 'about' %}
|
|
|
|
{% endblock %}
|