{% load i18n %}

{% trans 'Page' %} {{ page.title }}

{% trans 'URI' %}: {{ page.uri }}

{% if page.comment %}

{% trans 'Comment' %}: {{ page.comment }}

{% endif %} {% if page.help %}

{% trans 'Help' %}: {{ page.help }}

{% endif %} {% if page.verbose_name or page.verbose_name_plural %}

{% trans 'Verbose name' %}:

{% endif %} {% for element in page.elements %} {% if element in page.questions.all %} {% include 'questions/export/question.html' with question=element %} {% else %} {% include 'questions/export/questionset.html' with questionset=element %} {% endif %} {% endfor %}