{# templates/client/index.html.twig #} {% extends 'base.html.twig' %} {% block title %}Kunden{% endblock %} {% block body %}

Kunden

{% for client in clients %}
{{ client.name }} {% set count = client.projects|length %} {{ count }} {{ count == 1 ? 'Projekt' : 'Projekte' }}
{% if client.isArchived() %} {% else %} {% endif %}
{% if not client.isArchived() %} {% endif %}
{% else %}

Noch keine Kunden angelegt.

{% endfor %}
{% endblock %} {% block javascripts %} {{ parent() }} {{ encore_entry_script_tags('crud') }} {% endblock %}