{% extends 'crm/base.html' %} {% load static %} {% block title %} Survey Responses {% endblock title %} {% block body_no_container %}
My Survey Responses
{% if object_list %} Download All {% endif %}
{% for answer in object_list %}
{% if answer.question__survey__title %} {{ answer.question__survey__title }} {% endif %}

{{ answer.num_answers }}

Survey responses
Download
{% empty %}
😟 There are no responses currently!
{% endfor %}
    {% if object_list.has_previous %}
  • « First
  • {% endif %}
  • Page {{ object_list.number }} of {{ object_list.paginator.num_pages }}
  • {% if object_list.has_next %}
  • Last »
  • {% endif %}
URL analytics
{% for link in short_links %}
{{ link.question__survey__title }}
{{ link.long_url }}

{{ link.total }}

{{ link.clicks }}

People
Clicks
{% empty %}
😟 There are no URL analytics currently!
{% endfor %}
{% endblock body_no_container %} {% block extra_js %} {% endblock extra_js %}