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

Create new test

{% if tests | length > 0 %} {% for t in tests %} {% endfor %}
Test name Description Last updated
{{ t.name }} {{ t.description | slice(0, 100) }} {{ 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 %}