{# 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 %}