{% block head %} {% block styles %} {{ bootstrap.load_css() }} {% endblock %} CoupleQuestions {% endblock %} {% block content %}

CoupleQuestions


Fragenkategorien auswählen

{% for c in categories %}
{% endfor %}
{% 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 %}