Skip to content
Snippets Groups Projects
determination.html 700 B
Newer Older
  • Learn to ignore specific revisions
  • {% extends "messages/email/applicant_base.html" %}
    
    {% load bleach_tags %}
    
    
    Todd Dembrey's avatar
    Todd Dembrey committed
    {% block title %}Determination for {{ object.title }}{% endblock %}
    
    
    {% block content %}
    
    Your application has been reviewed and the outcome is: {{ submission.determination.clean_outcome }}
    
    
    {{ submission.determination.message|bleach }}
    
    {% endblock %}
    
    
    {% block post_signature_content %}
    
    {% if submission.determination.submitted %}
        {% for group in submission.determination.detailed_data.values %}
            {% for question, answer in group.questions %}
                <h5>{{ question }}</h5>
                {% if answer %}{{ answer|bleach }}{% else %}-{% endif %}
            {% endfor %}
    
        {% endfor %}
    
    {% endblock %}