#}
{# {% endfor %}#}
{% if details_groups|length > 0 %}
{% set bookings = details_groups %}
{% set start_index = 1 %}
{% else %}
{% set bookings = [details_bookings] %}
{% set start_index = 0 %}
{% endif %}
{% for bList in bookings %}
{% set first = bList[0] %}
{% if start_index > 0 %}
{# First row is special #}
{{ first[1] }}
{{ first[2] }}
{{ first[3] }}
{% endif %}
{# Then the other rows with real bookings info #}
{% for b in bList[start_index:] %}