Alice Gaudon
6aa37eb9e4
Reorganize views into new "assets" folder structure
Turn locals into a store so locals don't have to be passed through files that don't need them
Some fixes to previous commit (esm) 82ab0b963c
Remove afs in favor of fs.promises (renamed afs.exists to Utils.doesFileExist
Rename Utils.readdirRecursively to Utils.listFilesRecursively
27 lines
710 B
Plaintext
27 lines
710 B
Plaintext
{% extends 'mails/base_layout.mnjk' %}
|
|
|
|
{% block body %}
|
|
<mj-section>
|
|
<mj-column>
|
|
<mj-text mj-class="title">
|
|
New user account on {{ app.name }}
|
|
</mj-text>
|
|
<mj-text>
|
|
A new user is pending review on {{ app.name }}.
|
|
<br>
|
|
Username: {{ username }}
|
|
</mj-text>
|
|
|
|
<mj-text><a href="{{ link | safe }}">Go to account reviews</a></mj-text>
|
|
</mj-column>
|
|
</mj-section>
|
|
{% endblock %}
|
|
|
|
{% block text %}
|
|
Hi!
|
|
A new user is pending review on {{ app.name }}.
|
|
|
|
Username: {{ username }}
|
|
To review this account, please follow this link: {{ link|safe }}
|
|
{% endblock %}
|