{% extends 'base' %}{% block title %} View Data {% endblock title %} {% block nav %} {% include "auth_nav" %} {% endblock nav %} {% block main %}
{% for submission in payload.submissions %} {% for title in submission.value.titles %} {% endfor %} {% for row in submission.value.rows %} {% for value in row %} {% endfor %} {% endfor %}
{{ title }}Time
{{ value }}{{ submission.time }}
{% endfor %}
Next >
{% endblock main %}