{% extends "base.html" %} {% load i18n %} {% load static %} {% block title %}{% trans "Test Plan Browser" %}{% endblock %} {% block contents %}
{% include "tcms_test_browser/_nav.html" %}
--
{% trans "Total Test Plans" %}
{% trans "By Type" %}
{% trans "Active vs Inactive" %}
--%
0 {% trans "active" %} 0 {% trans "inactive" %}
{% trans "By Product" %}

{% trans "Test Plans" %}

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

{% trans "Test Plan Details" %}

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

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

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