CoupleQuestions
Fragenkategorien auswählen
{% if questions | length > 0 %}
Fragen
{% for category, c_questions in questions.items() %}
{{ category }}
{% for q in c_questions %}
- {{ q }}
{% endfor %}
{% endfor %}
{% endif %}
{% endblock %}
{% block scripts %}
{{ bootstrap.load_js() }}
{% endblock %}