{% set extracheck = namespace(bold=False) %}
{% set supercheck = namespace(items=[]) %}
{% for cell in row %}
{% if rowloop.index > 33 %}
{% set check.color = 'highlight' %}
{% else %}
{% if loop.index < 5 %}
{% set check.color = 'out' %}
{% elif loop.index < 8 %}
{% set check.color = 'in' %}
{% else %}
{% set check.color = 'black' %}
{% endif %}
{% endif %}
{% if 'QUARTER' in cell|string or 'COMMON' in cell|string or 'TOTAL' in cell|string %}
{% set extracheck.bold = True %}
{% if 'QUARTER 1' in cell|string %}
{% set check.quarter = Q1 %}
{% elif 'QUARTER 2' in cell|string %}
{% set check.quarter = Q2 %}
{% elif 'QUARTER 3' in cell|string %}
{% set check.quarter = Q3 %}
{% elif 'QUARTER 4' in cell|string %}
{% set check.quarter = Q4 %}
{% endif %}
{{ cell }} |
{% elif 'infrastructure' in cell|string %}
{% for row in check.quarter %}
{% if 'infrastructure' in row[6] or 'treat' in row[6] %}
{{ supercheck.items.append(row[0]) }}
{% endif %}
{% endfor %}
{{ cell }}
{% if supercheck %}
{% for item in supercheck.items %}
- {{ item }}
{% endfor %}
{% endif %}
|
{% elif 'EUR' in cell|string %}
{% set cell = cell.replace('EUR', '') %}
{% if extracheck.bold %}
{% if loop.index > 8 %}
{% if rowloop.index > 30 %}
{% set check.color = 'highlight' %}
{% endif %}
{% endif %}
{{ '€ {:,.2f}'.format(cell|float) }} |
{% else %}
{{ '€ {:,.2f}'.format(cell|float) }} |
{% endif %}
{% elif '- - -' in cell|string %}
|
{%- elif cell|string == '' -%}
|
{% else %}
{{ cell }} |
{% endif %}
{% endfor %}
|
{% endfor %}