{% extends 'layout.twig' %} {% block title %}List of Tests{% endblock %} {% block content %}
{% if tests | length > 0 %}Test name | Description | Last updated |
---|---|---|
{{ t.name }} | {{ t.description | slice(0, 100) }} | {{ t.updated_at | date("F jS \\a\\t g:ia") }} |
There are no tests in the database - perhaps you should create one?
{% endif %} {% endblock %}