{% extends "routes/layout.j2.html" %} {% from "components/info_card.j2.html" import info_card with context %} {% block head %} Overview | CARIAD {% endblock %} {% block left_sidebar %} {% include 'components/overview.j2.html'%} {% endblock %} {% block content %}

Configuration

{% if 'session' in json_report %} {% if 'details' in json_report['session'] %} {{ info_card('session', 'Test Session', json_report['session']['details']) }} {% endif %} {% if 'sections' in json_report['session'] %} {% if 'ecus' in json_report['session']['sections'] %} {% for ecu, data in json_report['session']['sections']['ecus'].items() %} {{ info_card('ecu', ecu, data) }} {% endfor %} {% endif %} {% endif %} {% endif %}
{% endblock %}