pal.templates.pages.index.twig.html Maven / Gradle / Ivy
The newest version!
{% extends '../layout.twig.html' %}
{% block title %}Pal Test Results{% endblock %}
{% block body %}
{% if (index.hasErrors) %}class="red"{% else %}class="green"{% endif %}
{% endblock %}
{% block content %}
Statistics
Groups
Package
Status
{% for group in index.groups %}
{{ group.name }}
{{ group.count('Passed') }}
{{ group.count('Ignored') }}
{{ group.count('Failed') }}
{% endfor %}
{% endblock %}