{% extends 'ccc/campaigns/base.html' %} {% load tz survey_tags static i18n staticfiles %} {% block title%}Survey Response {% endblock %} {% block content %}
My Survey Responses
{% for answer in object_list %} {% endfor %}
Date Created Survey Question Answer
{{ answer.created }} {% if answer.question.survey %} {{ answer.question.survey.title }} {% endif %} {{ answer.question.question }} {% if answer.mcqanswer %} {{ answer.mcqanswer.answer_choice.answer }} {% elif answer.textanswer %} {{ answer.textanswer.answer }} {% endif %}
{% endblock %}