{% extends "dashboard_app/_content.html" %} {% load i18n %} {% block title %} {{ block.super }} | {% trans "Tests" %} {% endblock %} {% block breadcrumbs %}
  • {% trans "Tests" %}
  • {% endblock %} {% block content %} {% for test in test_list %} {% endfor %}
    ID Name Test Cases Test Runs
    {{ test.test_id }} {{ test.name|default:"not set" }} {{ test.test_cases.all.count }} {{ test.test_runs.all.count }}
    {% endblock %}