{% load bootstrap3 %} {% bootstrap_css %} {% block page-header %}

{{ object.name }}

{% endblock %} {% block content %}
{% for question in questions %} {% if question.get_type_display == 'Rank'%} {% if not doingRankings.value %}
1= Strongly Disagree     2= Disagree     3= Neutral     4= Agree     5= Strongly Agree    
{% endif %} {{ doingRankings.true }} {%include 'django_pre_post/rank.html' with object=question %} {% else %} {% if doingRankings.value %}
Statement
SD
SA
{% endif %}
{{ doingRankings.false }} {% autoescape off %} {% if not question.get_type_display == 'Info' %} {{ forloop.counter }}. {% endif %} {{question.content}} {% endautoescape %}
{% if question.get_type_display == 'Fill In The Blank' %} {%include 'django_pre_post/fill_in_the_blank.html' with object=question %} {% elif question.get_type_display == 'Multiple Choice' %} {%include 'django_pre_post/multiple_choice.html' with object=question %} {% elif question.get_type_display == 'Numeric' %} {%include 'django_pre_post/numeric.html' with object=question %} {% elif question.get_type_display == 'Open Ended' %} {%include 'django_pre_post/open_ended.html' with object=question %} {% endif %}

{% endif %} {% endfor %} {% if doingRankings.value %} {% endif %}
{% csrf_token %}
{% endblock %}