{% 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
{{ t.name }} {{ t.description | slice(0, 100) }}
{% else %}

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

{% endif %} {% endblock %}