{% include 'ui.html' %}
{# client overview #}
{% include 'print_overview.html' %}
{# client detailedview #}
{% set printview = 'detailedview' %}
{% for color_block in color_blocks %}
{% set outer_loop = loop %}
{% include 'print_detail.html' %}
{% endfor %}
{# operator overview #}
{% include 'operator_overview.html' %}
{# operator detailed view #}
{% include 'operator_detailedview.html' %}
{# custom pages #}
{% include 'custom-page.html' %}