{% for category_data in account_data.categories %}
{% endfor %}
{% else %}
{% if account_data.account.slug == "gemeinschaftskonto" %}
Noch keine Budgets angelegt. Lege die erste Budget-Kategorie direkt hier an.
{% elif account_data.account.slug == "sparen-und-verteilung" %}
Noch keine Sparkonten angelegt. Lege Sparen, Urlaub oder weitere Verteilungsziele erst bei Bedarf an.
{% else %}
In diesem Bereich gibt es noch keine Kategorien.
{% endif %}
{% endif %}
{% endfor %}
{% for card in community_account_cards if not card.is_read_only %}
{% endfor %}
{% for account_data in planning_accounts %}
{% for category_data in account_data.categories %}
{% if not category_data.is_personal_split %}
{% endif %}
{% endfor %}
{% endfor %}
{% for account_data in planning_accounts %}
{% for category_data in account_data.categories %}
{% if category_data.is_personal_split %}
{% endif %}
{% endfor %}
{% endfor %}
{% for account_data in planning_accounts %}
{% for category_data in account_data.categories %}
{% for item in category_data.entries %}
{% endfor %}
{% endfor %}
{% endfor %}
{% for participant in participants if not participant.is_app_user %}
{% endfor %}
{% endblock %}