{% extends "html1/base.html" %} {% block header %}

{{ title|default('Test Report') }}

{% endblock %} {% block content %}
{% block summary %}
{% include "html1/chart.svg" %}
{% for category, tests in tests|groupby('status.category') %} {{ tests|count }} {{ category }} {% endfor %}
{% endblock %}
{% if warnings %}
{% for warning in warnings %}
WARNING
{{ warning.filename }}:{{ warning.lineno }}
{{ warning.message }}
{% endfor %}
{% endif %}
{% for fspath, tests in tests|groupby('item.fspath') %} {% set item = tests|map(attribute='item.parent')|first %}
{% block module_title scoped %}

{{ fspath|replace(config.rootdir, '')|replace('\\', '/') }}

{% for category, tests in tests|groupby('status.category') -%}
{{ tests|count }}
{%- endfor %}
{% endblock %}
{% block module_content scoped %} {% include "html1/module.html" %} {% endblock %}
{% endfor %}
{% endblock %}