{% extends "base.html" %} {% load i18n %} {% load pagination_tags %} {% block title %} {{ block.super }} | {% trans "Streams" %} {% endblock %} {% block breadcrumbs %}
  • {% trans "Bundle Streams" %}
  • {% endblock %} {% block sidebar %}

    {% blocktrans %} Streams are containers for bundles and are quite similar to folders or directories on your computer. {% endblocktrans %} {% trans "(learn more)" %}

    {% trans "Currently you have access to:" %}

    {% if not user.is_authenticated %}

    {% trans "You must" %} {% trans "sign in" %} {% trans "to get more access" %}

    {% endif %} {% endblock %} {% block content %} {% autopaginate bundle_stream_list %} {% if bundle_stream_list.count %} {% for bundle_stream in bundle_stream_list %} {% endfor %}
    Pathname Name Number of test runs Number of bundles
    {{ bundle_stream.pathname }} {{ bundle_stream.name|default:"not set" }} {{ bundle_stream.get_test_run_count }} {{ bundle_stream.bundles.count}}
    {% else %} {% if user.is_staff %}

    There are no streams yet, you can create one in the admin panel.

    {% else %}

    There are no streams yet.

    {% endif %} {% endif %} {% paginate %} {% endblock %}