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

Add missing data to email

parent c150ab6c
No related branches found
No related tags found
1 merge request!1Reformat and cleanup
Pipeline #56135 canceled
...@@ -42,6 +42,14 @@ ...@@ -42,6 +42,14 @@
{% endfor %} {% endfor %}
{% endif %} {% endif %}
**** {% trans "Consents" %} ****
{% if registration.accepted_terms %}
{% for term in registration.accepted_terms.all %}
* {{ term.title }}: {% trans "Accepted" %}
{% endfor %}
{% endif %}
{% trans "Your AlekSIS team" %} {% trans "Your AlekSIS team" %}
{% endblock %} {% endblock %}
...@@ -81,16 +89,21 @@ ...@@ -81,16 +89,21 @@
</ul> </ul>
<h5>{% trans "Additional" %}</h5> <h5>{% trans "Additional" %}</h5>
{% if registration.extended_data %} {% if registration.extended_data %}
<ul>
{% for field, value in registration.extended_data.items %} {% for field, value in registration.extended_data.items %}
<ul> <li>
<li> {{ field }}: {{ value }}
{{ field }} </li>
</li> {% endfor %}
<li> <ul>
{{ value }} {% endif %}
</li> <h5>{% trans "Consents" %}</h5>
</ul> {% if registration.accepted_terms %}
<ul>
{% for term in registration.accepted_terms.all %}
<li>{{ term.title }}: {% trans "Accepted" %}</li>
{% endfor %} {% endfor %}
</ul>
{% endif %} {% endif %}
</blockquote> </blockquote>
......
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