{% extends "base.html" %} {% load i18n %} {% load humanize %} {% load pagination_tags %} {% block title %} {{ block.super }} | {% trans "Streams" %} | {% trans "Bundle Stream" %} {{ bundle_stream.pathname }} | {% trans "Bundles" %} {% endblock %} {% block breadcrumbs %}
  • {% trans "Bundle Streams" %}
  • {{ bundle_stream }}
  • {% trans "Bundles" %}
  • {% endblock %} {% block sidebar %} {% endblock %} {% block content %} {% autopaginate bundle_list %} {% if invalid_page %}

    {% trans "There are no bundles on this page." %}

    {% trans "Try the" %} {% trans "first page" %} {% trans "instead." %}

    {% else %} {% if bundle_list.count %} {% for bundle in bundle_list %} {% endfor %}
    {% trans "Uploaded On" %}
    {% trans "most recent first" %}
    {% trans "Uploaded by" %} {% trans "Content filename" %} {% trans "Content SHA1" %} {% trans "Deserialized" %}
    {{ bundle.uploaded_on|naturalday }} {{ bundle.uploaded_on|time }} {% if bundle.uploaded_by %} {{ bundle.uploaded_by }} {% else %} {% trans "anonymous user" %} {% endif %} {{ bundle.content_filename }} {{ bundle.content_sha1 }} {{ bundle.is_deserialized|yesno }}
    {% else %}

    {% trans "There are no bundles in this stream yet." %}

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