{% extends "base-apply.html" %} {% load bleach_tags %} {% block content %}

Determination {% if determination.is_draft %}[DRAFT]{% endif %}

For {{ determination.submission.title }}
Determination: {{ determination.get_outcome_display }}
{{ determination.message|bleach }}
{% for group in determination.detailed_data.values %}

{{ group.title }}

{% for question, answer in group.questions %}
{{ question }}
{% if answer %}{{ answer|bleach }}{% else %}-{% endif %} {% endfor %} {% endfor %}
{% endblock %}