{% extends "base.html" %} {% load form_filters %} {% block title %}{{ form.name }} - Submission Details{% endblock %} {% block content %}
| 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 %} |
No responses found for this submission.