{% extends 'layout.twig' %} {% block title %}List of Tests{% endblock %} {% block content %}

Create new test

{% if tests | length > 0 %} {% for t in tests %} {% endfor %}
Test title Hardware # of benchmarks Last updated
{{ t.title }} {{ t.component.name }} {{ t.benchmarks() | length }} {{ t.updated_at | date("F jS \\a\\t g:ia") }}
{% else %}

There are no tests in the database - perhaps you should create one?

{% endif %} {% endblock %}