{% extends 'layout.twig' %} {% block title %}Test: {{ test.name }}{% endblock %} {% block content %}

{{ test.name }}

{{ test.description }}


Test results:

Add new result

{% if test.results | length > 0 %} {% for r in test.results %} {% endfor %}
Component Benchmark Scoring Avg. Min. Max.
{{ r.component }} {{ r.benchmark }} {{ r.type | capitalize }} {{ r.average }} {{ r.minimum ? r.minimum : 'N/a' }} {{ r.maximum ? r.maximum : 'N/a' }}
{% else %}

There are no results associated with this.

{% endif %}
{% endblock %}