{% extends "base.html" %} {% load i18n %} {% load static %} {% block title %}{% trans "Test Run Browser" %}{% endblock %} {% block contents %}
{% include "tcms_test_browser/_nav.html" %}
--
{% trans "Total Test Runs" %}
{% trans "By Execution Status" %}
{% trans "Completion" %}
--%
0 {% trans "completed" %} 0 {% trans "in progress" %}
{% trans "By Product" %}

{% trans "Test Runs" %}

{% for product in tree_data %}
{{ product.name }} {{ product.count }}
{% empty %}
{% trans "No products found" %}
{% endfor %}

{% trans "Test Run Details" %}

{% trans "Select a test run from the tree" %}

{% trans "Click on a test run in the left panel to view its details here." %}

{% now "U" as cache_bust %} {% endblock %}