{% extends 'votebase/base.html' %} {% load i18n thumbnail question_extras %} {% block title %}{{ survey.title }}{% endblock %} {% block content_title %}{{ survey.title }}{% endblock %} {% if survey.css %} {% block css %}{% endblock %} {% endif %} {% block content %}
{% if survey.preface %}
{% autoescape off %}{{ survey.preface }}{% endautoescape %}
{% endif %}
{% csrf_token %} {% for form in question_forms %}
{% include 'votebase/helpers/form.html' %} {% if not forloop.last %}
{% endif %}
{% endfor %}
{% endblock %}