{% 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 %}
| {% trans "Identifier" %} | {% trans "Date" %} | {% trans "Started by" %} | {% trans "Status" %} | {% for result in test_results %}
|---|---|---|---|
| {{ result }} | {{ result.timestamp }} | {{ result.reason }} | {% include "wcs/backoffice/includes/test-result-fragment.html" %} |
{% if testdef %} {% trans "No test results yet." %} {% else %} {% trans "No tests results yet." %} {% endif %}