{% extends 'votebase/base.html' %} {% load i18n question_extras %} {% block title %}{{ survey.title }}{% endblock %} {% block content_title %} {% trans 'Back' %}
{% csrf_token %}
{% endblock %} {% block content_title_extra %}{% include 'surveys/helpers/advanced.html' %}{% endblock %} {% block subtitle %}{% trans 'Question types' %}{% endblock %} {% block subtitle_extra %}{% include 'surveys/helpers/tabs.html' with active='questions' survey=survey %}{% endblock %} {% block content %}
{% include 'questions/helpers/kinds.html' %}
{% if not object_list %}
{% trans 'Great!
Now lets create your first question.' %}

{% trans 'Select the element you need from the sidebar' %}

{% else %}
{% for question in object_list %} {% if question.category %}
{{ question.category }}
{% endif %}
{% get_design_form question forloop.counter %}
{% endfor %}
{% trans 'Your new question will be here.' %}
{% trans 'Continue' %} {% endif %}
{% endblock %}