{% load i18n %}
{% trans 'Question set' %} {{ questionset.title }}
{% trans 'URI' %}: {{ questionset.uri }}
{% if questionset.comment %}{% trans 'Comment' %}: {{ questionset.comment }}
{% endif %} {% if questionset.help %}{% trans 'Help' %}: {{ questionset.help }}
{% endif %} {% if questionset.verbose_name %}{% trans 'Verbose name' %}: {{ questionset.verbose_name }}
{% endif %} {% for element in questionset.elements %} {% if element in questionset.questions.all %} {% include 'questions/export/question.html' with question=element %} {% else %} {% include 'questions/export/questionset.html' with questionset=element %} {% endif %} {% endfor %}