{% extends "dashboard_app/_content.html" %} {% load i18n %} {% block title %} {{ block.super }} | {% trans "Tests" %} | {% trans "Details of" %} {{ test.test_id }} {% endblock %} {% block breadcrumbs %}
  • {% trans "Tests" %}
  • {% trans "Details of" %} {{ test.test_id }}
  • {% endblock %} {% block content %} {% for test_case in test.test_cases.all %} {% endfor %} {% if test.count_results_without_test_case %} {% endif %}
    ID Name Units Total Results Total Failures
    {{ test_case.test_case_id }} {{ test_case.name|default:"not set" }} {{ test_case.units|default:"not set" }} {{ test_case.test_results.all.count }} {{ test_case.count_failures }}
    Results without test case N/A N/A {{ test.count_results_without_test_case }} {{ test.count_failures_without_test_case }}
    {% endblock %}