{% extends "wcs/backoffice.html" %} {% load i18n %} {% block appbar-title %}{% trans "Result" %} #{{ test_result.id }}{% endblock %} {% block appbar-actions %} {% trans "Run tests again" %} {% endblock %} {% block body %}
{% trans "Name" %} | {% trans "Result" %} | {% trans "Inspect" %} | {% trans "Details" %} | {% for test in test_result.results %}
---|---|---|---|
{{ test.name }} | {% firstof test.error _("Success!") %} | {% if test.formdata %} {% trans "Display inspect" %} {% endif %} | {% if test.has_details %} {% trans "Display details" %} {% endif %} |