{% extends "wcs/backoffice.html" %} {% load i18n %} {% block appbar-title %} {% if testdef %} {% trans "Results of test:" %} {{ testdef }} {% else %} {% trans "Tests results" %} {% endif %} {% endblock %} {% block appbar-actions %} {% if has_testdefs %} {% if testdef %} {% trans "Run test" %} {% else %} {% trans "Run tests" %} {% endif %} {% endif %} {% endblock %} {% block body %} {% if test_results %}
{% for result in test_results %} {% endfor %}
{% trans "Identifier" %} {% trans "Date" %} {% trans "Started by" %} {% trans "Status" %}
{{ result }} {{ result.timestamp }} {{ result.reason }} {% include "wcs/backoffice/includes/test-result-fragment.html" %}
{{ pagination_links|safe }}
{% else %}

{% if testdef %} {% trans "No test results yet." %} {% else %} {% trans "No tests results yet." %} {% endif %}

{% endif %} {% endblock %}