{% extends "dashboard_app/base.html" %} {% load i18n %} {% load humanize %} {% load pagination_tags %} {% block extrahead %} {{ block.super }} {% endblock %} {% block title %} {{ block.super }} | {% trans "Streams" %} | {% trans "Bundle Stream" %} {{ bundle_stream.pathname }} {% endblock %} {% block breadcrumbs %}
{% trans "This stream is owned by" %} {{ bundle_stream.user }}
{% trans "This stream is owned by group called" %} {{ bundle_stream.group }}
The dashboard has several types of containers for test results. One of the most common and the oldest one is an anonymous stream. Anonymous streams act like public FTP servers. Anyone can download or upload files at will. There are some restrictions, nobody can change or remove existing files
When a stream is anonymous anonyone can upload new test results and the identity of the uploading user is not recorded in the system. Anonymous streams have to be public (granting read access to everyone)
{% trans "Try the" %} {% trans "first page" %} {% trans "instead." %}
{% else %} {% if test_run_list.count %}
{% trans "Uploaded On" %}
{% trans "most recent first" %}
|
{% trans "Analyzed" %} | {% trans "Test" %} | {% trans "Run" %} | {% trans "Pass" %} | {% trans "Fail" %} | {% trans "Skip" %} | {% trans "Unknown" %} |
---|---|---|---|---|---|---|---|
{{ test_run.bundle.uploaded_on|naturalday }} {{ test_run.bundle.uploaded_on|time }} | {{ test_run.analyzer_assigned_date|timesince }} {% trans "ago" %} | {{ test_run.test }} | {{ test_run }} | {% with test_run.get_summary_results as summary %}{{ summary.pass|default:0 }} | {{ summary.fail|default:0 }} | {{ summary.skip|default:0 }} | {{ summary.unknown|default:0 }} | {% endwith %}
{% trans "There are no test runs in this stream yet." %}
{% endif %} {% paginate %} {% endif %} {% endblock %}