{% load i18n %}
{% trans "Pathname:" %}
{{ bundle_stream.pathname }}
{% trans "Name:" %}
{{ bundle_stream.name|default:"not set" }}
{% trans "Ownership" %}
{% if bundle_stream.user %}

{% trans "This stream is owned by" %} {{ bundle_stream.user }}

{% else %}

{% trans "This stream is owned by group called" %} {{ bundle_stream.group }}

{% endif %}
{% trans "Export" %}

test run data as CSV

{% trans "Stream type:" %}
{% if bundle_stream.is_anonymous %}
Anonymous stream
{% trans "Read access:" %}
{% trans "Anyone can download or read test results uploaded here" %}
{% trans "Write access:" %}
{% trans "Anyone can upload test results here" %}
{% else %} {% if bundle_stream.is_public %}
{% trans "Public stream" %}
{% trans "Read access:" %}
{% trans "Anyone can download or read test results uploaded here" %}
{% else %}
{% trans "Private stream" %}
{% trans "Read access:" %}
{% trans "Only the owner can download or read test results uploaded here" %}
{% endif %}
{% trans "Write access:" %}
{% trans "Only the owner can upload test results here" %}
{% endif %}

Changing stream access A stream can be marked as anonymous or private in the administration panel but note that the pathname of the stream will change.