{% extends 'exp/base.html' %} {% load bootstrap3 %} {% load exp_extras %} {% block title %}Responses | {{ study.name }}{% endblock %} {% block head %} {{ block.super }} {{ form.media }} {% endblock %} {% block flash %} {% bootstrap_messages %} {% if form.non_field_errors %} {% endif %} {% endblock %} {% block content %}

Individual Responses

{% if responses %} {% include 'studies/_response_nav_tabs.html' with active="individual" %} {% else %}

No responses recorded!

{% endif %}
{% if responses %}
{% for response in responses %} {% endfor %}
User ID Response ID Status Date
{{ response.child.user.id }} {{ response.id}} {% if response.completed %} Complete {% else %} In Progress {% endif %} {{ response.date_modified|date:"n/d/Y"|default:"N/A" }}
{% include 'studies/_paginator.html' with items=responses request=request %}
Download Individual Response JSON {% for response in response_data %} {% endfor %} {% for csv in csv_data %} {% endfor %}

Attachments

{% for attachments in attachment_list %} {% endfor %}
{% endif %}
{% endblock %}