{% extends "base-apply.html" %} {% load i18n bleach_tags %} {% block title %}{% trans "Determination for" %} {{ determination.submission.title }}{% endblock %} {% block content %}
{% trans "Back to submission" %}

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

For: {{ determination.submission.title }}
{% trans "Determination" %}: {{ determination.get_outcome_display }}
{% if request.user.is_apply_staff %}
{% trans "Edit" %}
{% endif %}

Determination message

{{ determination.message|bleach }} {% for group in determination.detailed_data.values %} {% if group.title %}

{{ group.title|bleach }}

{% endif %} {% for question, answer in group.questions %}
{{ question }}
{% if answer %}{% if answer == True %}{{ answer|yesno:"Agree,Disagree" }}{% else %}{{ answer|bleach }}{% endif %}{% else %}-{% endif %} {% endfor %} {% endfor %}
{% endblock %}