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

Show date of birth in event_registered email

parent 5b272876
No related branches found
No related tags found
No related merge requests found
Pipeline #56912 failed
...@@ -9,6 +9,11 @@ and this project adheres to `Semantic Versioning`_. ...@@ -9,6 +9,11 @@ and this project adheres to `Semantic Versioning`_.
Unreleased Unreleased
---------- ----------
Fixed
-----
* Show date of birth in event_registered mail
`1.2`_ `1.2`_
------ ------
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
**** {% trans "Person" %} **** **** {% trans "Person" %} ****
* {% trans "Name" %}: {{ registration.person }} * {% trans "Name" %}: {{ registration.person }}
* {% trans "Date of birth" %}: {{ registration.date_of_birth }} * {% trans "Date of birth" %}: {{ registration.person.date_of_birth }}
* {% trans "Email address" %}: {{ registration.person.email }} * {% trans "Email address" %}: {{ registration.person.email }}
* {% trans "Mobile number" %}: {{ registration.person.mobile_number }} * {% trans "Mobile number" %}: {{ registration.person.mobile_number }}
* {% trans "Street" %}: {{ registration.person.street }} * {% trans "Street" %}: {{ registration.person.street }}
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
<h5>{% trans "Person" %}</h5> <h5>{% trans "Person" %}</h5>
<ul> <ul>
<li>{% trans "Name" %}: {{ registration.person }}</li> <li>{% trans "Name" %}: {{ registration.person }}</li>
<li>{% trans "Date of birth" %}: {{ registration.date_of_birth }}</li> <li>{% trans "Date of birth" %}: {{ registration.person.date_of_birth }}</li>
<li>{% trans "Email address" %}: {{ registration.person.email }}</li> <li>{% trans "Email address" %}: {{ registration.person.email }}</li>
<li>{% trans "Mobile number" %}: {{ registration.person.mobile_number }}</li> <li>{% trans "Mobile number" %}: {{ registration.person.mobile_number }}</li>
<li>{% trans "Street" %}: {{ registration.person.street }}</li> <li>{% trans "Street" %}: {{ registration.person.street }}</li>
......
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