{% for thema in themen %}
{% set group_questions = fragen | selectattr("thema_id", "equalto", thema.id) | list %}
{% if group_questions %}
{% for f in group_questions %}
#{{ f.id }}
{% if f.branchen %}
{{ f.branchen }}
{% else %}
Keine Branche zugeordnet
{% endif %}
{{ f.text }}
{% endfor %}
{% endif %}
{% endfor %}
{% endblock %}