{% extends 'base-questionnaire.html' %} {% block title %}item-linked Questionnaires {% endblock %} {% block topsection %} {% endblock %} {% block content %}

Questionnaire Tools

Items You Can Use for Questionnaires

{% for item in items %}
{{ item }}
{% for landing in item.landings.all %}
Configured questionnaire: {{ landing }}
Link: {{ landing.url }}
Completed {{ landing.runinfohistory_set.all.count }} times
{% endfor %}
Set up a new questionnaire for this item.
{% for questionnaire in questionnaires %} Export or Summarize answers to {{ questionnaire }} for this item.
{% endfor %}
{% empty %}

No items available

{% endfor %}

{% for questionnaire in questionnaires %} Export all my answers to {{ questionnaire }}.
Summarize my responses to {{ questionnaire }}.
{% if request.user.is_staff %}Export ALL answers to {{ questionnaire }}.
Summarize ALL responses to {{ questionnaire }}.
{% endif %} {% endfor %}

Add "?next=https://example.com/any_url" to the end of a questionnaire url to add a redirect on completion of the questionnaire.

{% endblock %}