Skip to content
Snippets Groups Projects
Unverified Commit 52d9c47c authored by Fredrik Jonsson's avatar Fredrik Jonsson Committed by GitHub
Browse files

Merge pull request #634 from OpenTechFund/feature/add-feedback-determination-mail

Add all feedback fields to the determination e-mail.
parents c121986c 0e3bd8fd
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,15 @@
{% block content %}
Your application has been reviewed and the outcome is: {{ determination.clean_outcome }}
{{ determination.message|bleach }}
{{ determination.message|bleach|striptags }}
Read the complete determination here: {{ request.scheme }}://{{ request.get_host }}{{ determination.get_absolute_url }}
{% for group in determination.detailed_data.values %}
{{ group.title }}
{% for question, answer in group.questions %}
{% if answer %}{{ question }}:
{{ answer|bleach|striptags }}{% endif %}
{% endfor %}
{% endfor %}
Read the determination here: {{ request.scheme }}://{{ request.get_host }}{{ determination.get_absolute_url }}
{% endblock %}
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