roundabout,
created on Wednesday, 13 March 2024, 12:45:43 (1710333943),
received on Wednesday, 31 July 2024, 06:54:42 (1722408882)
Author identity: vlad <vlad.muntoiu@gmail.com>
5e317e467c600d5fffb0e2c5467b468e1dbf4db7
email_templates/welcome.html
@@ -1,14 +1,13 @@
{% extends "mail.html" %}
{% block content %}
<h1>Hello, {{ username }}!</h1>
<h1>{% trans username=username %}Hello, {{ username }}!{% endtrans %}</h1>
<p>
Welcome to the roundabout. Make yourself at home.
{% trans %}Welcome to the roundabout. Make yourself at home.{% endtrans %}
</p>
<p>
You've just registered for an account at this server. If it wasn't you, write to us and we'll remove this email from
our database.
{% trans %}You've just registered for an account at this server. If it wasn't you, write to us and we'll remove this email from our database.{% endtrans %}
</p>
<p>
No email verification is required; email notifications are provided only for your convenience.
{% trans %}No email verification is required; email notifications are provided only for your convenience.{% endtrans %}
</p>
{% endblock %}
{% endblock %}
email_templates/welcome.txt
@@ -1,11 +1,10 @@
{% extends "mail.txt" %}
{% block content %}
# Hello, {{ username }}!
{% trans username=username %}# Hello, {{ username }}!{% endtrans %}
Welcome to the roundabout. Make yourself at home.
{% trans %}Welcome to the roundabout. Make yourself at home.{% endtrans %}
You've just registered for an account at this server. If it wasn't you, write to us and we'll remove this email from
our database.
{% trans %}You've just registered for an account at this server. If it wasn't you, write to us and we'll remove this email from our database.{% endtrans %}
No email verification is required; email notifications are provided only for your convenience.
{% endblock %}
{% trans %}No email verification is required; email notifications are provided only for your convenience.{% endtrans %}
{% endblock %}