{% extends "base.html" %} {% load form_filters %} {% block title %}{{ form.name }} - Submission Details{% endblock %} {% block content %}

Submission Details

Back
Submission ID: {{ submission.id }}
Submitted: {{ submission.submitted_at|date:"M d, Y H:i" }}
Form: {{ form.name }}
{% if submission.applicant_name or submission.applicant_email %}
{% if submission.applicant_name %}
Applicant Name: {{ submission.applicant_name }}
{% endif %} {% if submission.applicant_email %}
Email: {{ submission.applicant_email }}
{% endif %}
{% endif %}
Responses
{% get_all_responses_flat stage_responses as all_responses %} {% if all_responses %}
{% for response in all_responses %} {% endfor %}
Field Label Response Value File
{{ response.field_label }} {% if response.required %} * {% endif %} {% if response.uploaded_file %} File: {{ response.uploaded_file.name }} {% elif response.value %} {% if response.field_type == 'checkbox' and response.value|length > 0 %}
{% for val in response.value %} {{ val }} {% endfor %}
{% elif response.field_type == 'radio' or response.field_type == 'select' %} {{ response.value }} {% else %}

{{ response.value|linebreaksbr }}

{% endif %} {% else %} Not provided {% endif %}
{% if response.uploaded_file %} Download {% endif %}
{% else %}

No responses found for this submission.

{% endif %}
{% endblock %} {% block extra_css %} {% endblock %}