{% extends "base.html" %} {% load display_tags %} {% load authorization_tags %} {% block content %} {{ block.super }}
{{ name }}
{% if questions %}
{% include "dojo/paging_snippet.html" with page=questions page_size=True %}
{% for question in questions %} {% endfor %}
Text Optional Type
{% if "dojo.change_question"|has_configuration_permission:"staff" %} {{ question.text }} {% else %} {{ question.text }} {% endif %} {{ question.optional|yesno|capfirst }} {{ question|content_type_str|capfirst }}
{% include "dojo/paging_snippet.html" with page=questions page_size=True %}
{% else %} No Questionnaires found. {% endif %}
{% if filtered.form %} {% if "dojo.add_question"|has_configuration_permission:"staff" %}
Actions
{% endif %}
Filters
{{ filtered.form.as_p }}
{% endif %}
{% endblock %}