{% extends "base.html" %} {% load i18n %} {% load pagination_tags %} {% block title %} {{ block.super }} | {% trans "Streams" %} {% endblock %} {% block breadcrumbs %}
{% blocktrans %} Streams are containers for bundles and are quite similar to folders or directories on your computer. {% endblocktrans %}
{% trans "Currently you have access to:" %}
{% trans "You must" %} {% trans "sign in" %} {% trans "to get more access" %}
{% endif %} {% endblock %} {% block content %} {% autopaginate bundle_stream_list %} {% if bundle_stream_list.count %}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}} |
There are no streams yet, you can create one in the admin panel.
{% else %}There are no streams yet.
{% endif %} {% endif %} {% paginate %} {% endblock %}