{% extends "base.html" %} {% block content %}
{% for thema in themen %} {% set group_questions = fragen | selectattr("thema_id", "equalto", thema.id) | list %} {% if group_questions %}

{{ thema.kurztitel }} - {{ thema.titel }}

Fragen: {{ group_questions|length }}

Frage zu diesem Thema
{% for f in group_questions %}
#{{ f.id }} {% if f.branchen %} {{ f.branchen }} {% else %} Keine Branche zugeordnet {% endif %}
{{ f.text }}
Bearbeiten
{% endfor %}
{% endif %} {% endfor %}
{% endblock %}