{% extends "list.html" %} {% load i18n %} {% block title %} | {% 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_list %} {% for bundle_stream in bundle_stream_list %} {% endfor %}
    Pathname Name Number of bundles
    {{ bundle_stream.pathname }} {{ bundle_stream.name|default:"not set" }} {{ bundle_stream.bundles.all.count }}
    {% endblock %} {% block no_content %} {% if user.is_staff %}

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

    {% else %}

    There are no streams yet.

    {% endif %} {% endblock %}