{% extends "html1/base.html" %} {% 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 %}

{% block module_name scoped %} {{ fspath|replace(config.rootdir, '')|replace('\\', '/') }} {% endblock %}

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