{% extends "im/account_base.html" %} {% block page.title %}{{ survey.title }}{% endblock %} {% block headjs %} {{ block.super }} {% endblock %} {% block body %}

{{ survey.title }} {% for slang in survey.languages %} {% if slang != lang %} {% for key, value in lang_map.items %} {% if key == slang %} - {{ value }} {% endif %} {% endfor %} {% endif %} {% endfor %}

{% if survey.description %}

{{ survey.description }}

{% endif %}
{% csrf_token %} {% with survey_form as form %} {% include "survey/form_render.html" %} {% endwith %}
{% endblock body %}