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

Merge pull request #758 from OpenTechFund/fix/e-mail-template-empty-lines

Removing some empty lines in e-mail templates.
parents aa38c434 cc8a31bd
No related branches found
No related tags found
No related merge requests found
...@@ -3,18 +3,13 @@ ...@@ -3,18 +3,13 @@
{% block title %}Determination for {{ object.title }}{% endblock %} {% block title %}Determination for {{ object.title }}{% endblock %}
{% block content %} {% block content %}Your application has been reviewed and the outcome is: {{ determination.clean_outcome }}
Your application has been reviewed and the outcome is: {{ determination.clean_outcome }}
{{ determination.message|bleach|striptags }} {{ determination.message|bleach|striptags }}
{% for group in determination.detailed_data.values %} {% for group in determination.detailed_data.values %}{{ group.title }}
{{ group.title }}
{% for question, answer in group.questions %} {% for question, answer in group.questions %}
{% if answer %}{{ question }}: {% if answer %}{{ question }}:
{{ answer|bleach|striptags }}{% endif %} {{ answer|bleach|striptags }}{% endif %}{% endfor %}{% endfor %}
{% endfor %}
{% endfor %}
Read the determination here: {{ request.scheme }}://{{ request.get_host }}{{ determination.get_absolute_url }} Read the determination here: {{ request.scheme }}://{{ request.get_host }}{{ determination.get_absolute_url }}{% endblock %}
{% endblock %}
{% extends "messages/email/applicant_base.html" %} {% extends "messages/email/applicant_base.html" %}
{% block content %} {% block content %}Your application has been progressed from {{ old_phase.display_name }} to {{ submission.phase }}.{% endblock %}
Your application has been progressed from {{ old_phase.display_name }} to {{ submission.phase }}.
{% 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