{% extends "base.html" %} {% load i18n %} {% load static %} {% block title %}{% trans "Artifact Browser" %}{% endblock %} {% block contents %}
--
{% trans "Total Artifacts" %}
--
{% trans "By File Type" %}
{% trans "By Source" %}

{% trans "Test Runs" %}

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

{% trans "Bugs" %}

{% for product in bug_tree_data %}
{{ product.name }} {{ product.bugs|length }}
{% empty %}
{% trans "No bugs with attachments" %}
{% endfor %}

{% trans "Artifacts" %}

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

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

{% include "tcms_artifact_browser/_preview.html" %} {% now "U" as cache_bust %} {% endblock %}