{% 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 %}
    ID Name Units Test Results
    {{ test_case.test_case_id }} {{ test_case.name|default:"not set" }} {{ test_case.units|default:"not set" }} {{ test_case.test_results.all.count }}
    {% endblock %}