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