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 @@
{% endfor %}
{% endif %}
**** {% trans "Consents" %} ****
{% if registration.accepted_terms %}
{% for term in registration.accepted_terms.all %}
* {{ term.title }}: {% trans "Accepted" %}
{% endfor %}
{% endif %}
{% trans "Your AlekSIS team" %}
{% endblock %}
......@@ -81,16 +89,21 @@
</ul>
<h5>{% trans "Additional" %}</h5>
{% if registration.extended_data %}
<ul>
{% for field, value in registration.extended_data.items %}
<ul>
<li>
{{ field }}
</li>
<li>
{{ value }}
</li>
</ul>
<li>
{{ field }}: {{ value }}
</li>
{% endfor %}
<ul>
{% endif %}
<h5>{% trans "Consents" %}</h5>
{% if registration.accepted_terms %}
<ul>
{% for term in registration.accepted_terms.all %}
<li>{{ term.title }}: {% trans "Accepted" %}</li>
{% endfor %}
</ul>
{% endif %}
</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