{% extends "base.html" %} {% load i18n %} {% load static %} {% block title %}{% trans "Test Case Browser" %}{% endblock %} {% block contents %}
{% include "tcms_test_browser/_nav.html" %}
--
{% trans "Total Test Cases" %}
{% trans "By Status" %}
{% trans "By Priority" %}
{% trans "Automation" %}
--%
0 {% trans "automated" %} 0 {% trans "manual" %}
{% trans "By Product" %}

{% trans "Test Cases" %}

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

{% trans "Test Case Details" %}

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

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

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