{% extends '../layout.twig.html' %} {% block title %}Pal Test Results{% endblock %} {% block body %} {% if (group.hasErrors) %}class="red"{% else %}class="green"{% endif %} {% endblock %} {% block content %}
| Name | Status | {% for test in group.tests %}
|---|---|
| {{ test.name }} | {{ test.count('Passed') }} {{ test.count('Ignored') }} {{ test.count('Failed') }} |