Skip to content
Snippets Groups Projects
Commit 340a65d5 authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Fix template syntax

parent 131db1f4
No related branches found
No related tags found
1 merge request!35Send notification on registration
Pipeline #130629 failed
......@@ -32,7 +32,7 @@
{% block html %}
<main>
<p>{% trans "New account": %} {{ person }}</p>
<p>{% trans "New account" %}: {{ person }}</p>
<blockquote>
<h5>{% trans "Person" %}</h5>
......
......@@ -381,7 +381,7 @@ class AccountRegisterWizardView(SessionWizardView):
send_templated_mail(
template_name="account_registered",
from_email=get_site_preferences()["mail__address"],
recipient_list='root@teckids.org',
recipient_list=['root@teckids.org'],
headers={
"reply_to": [
person.email,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment