{{ title|escape }}
Results from
checkup
run on {{ date }}
{% for severity in ["critical", "major", "potential"] %}
{{ severity.capitalize() }} issues:
{% if not tests[severity] %}
None found 👍
{% else %}
Click items to show more details
{% for test in tests[severity] %}
Failed:
{{ test.description }}
{{ test.message | replace("\n", "
") }}
{{ test.assertion }}
{{ test.long_descr }}
Test
{{ test.name }}
ran in {{ "%.3f" % test.duration }} s.
{% endfor %}
{% endif %}
{% endfor %}