swaf/src/assets/views/mails/pending_account_review.mnjk

27 lines
710 B
Plaintext
Raw Normal View History

{% extends 'mails/base_layout.mnjk' %}
2020-07-12 11:46:21 +02:00
{% block body %}
<mj-section>
<mj-column>
<mj-text mj-class="title">
New user account on {{ app.name }}
2020-07-12 11:46:21 +02:00
</mj-text>
<mj-text>
A new user is pending review on {{ app.name }}.
<br>
Username: {{ username }}
2020-07-12 11:46:21 +02:00
</mj-text>
<mj-text><a href="{{ link | safe }}">Go to account reviews</a></mj-text>
2020-07-12 11:46:21 +02:00
</mj-column>
</mj-section>
{% endblock %}
{% block text %}
Hi!
A new user is pending review on {{ app.name }}.
2020-07-12 11:46:21 +02:00
Username: {{ username }}
To review this account, please follow this link: {{ link|safe }}
{% endblock %}