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

Leistungen

{% set currentGroup = null %} {% for service in services %} {% set group = service.billable ? 'Verrechenbar' : 'Nicht-verrechenbar' %} {% if group != currentGroup %} {% if currentGroup is not null %}
{% endif %}
{{ group }}
{% set currentGroup = group %} {% endif %}
{{ service.name }}
{% if service.isArchived() %} {% else %} {% endif %}
{% if not service.isArchived() %} {% endif %}
{% else %}

Noch keine Leistungen angelegt.

{% endfor %} {% if currentGroup is not null %}
{% endif %}
{% endblock %} {% block javascripts %} {{ parent() }} {{ encore_entry_script_tags('crud') }} {% endblock %}