{% extends "dashboard_app/_content_with_sidebar.html" %} {% load humanize %} {% load i18n %} {% load stylize %} {% block extrahead %} {{ block.super }} {% endblock %} {% block sidebar %}

Permalink

You can navigate to this bundle, regardless of the bundle stream it is located in, by using this permalink

Upload details

{% if bundle.uploaded_by %}

This bundle was uploaded by {{bundle.uploaded_by}} on {{bundle.uploaded_on}} ({{bundle.uploaded_on|timesince}} ago)

{% else %}

This bundle was uploaded by an anonymous contributor on {{bundle.uploaded_on}} ({{bundle.uploaded_on|timesince}} ago)

{% endif %} {% if bundle.testjob %}

Job details

Job id
{{ bundle.testjob.id }}
Start time
{{ bundle.testjob.start_time }}
End time
{{ bundle.testjob.end_time }}
{% endif %}

File details

Declared file name:
{{ bundle.content_filename }}
Content SHA1:
{{ bundle.content_sha1 }}
Content size:
{{ bundle.get_content_size }}

Storage and format

Document format:
{{bundle.get_document_format}}
Serialization format:
{{ bundle.get_serialization_format}}

Tips

You can download this bundle with the following command:

lava-dashboard-tool get --dashboard-url=http://{{site.domain}}{% url lava.api_handler %} {{bundle.content_sha1}}
{% endblock %} {% block content %}
{% if bundle.is_deserialized %}
{% with bundle.test_runs.all as test_run_list %} {% include "dashboard_app/_test_run_list_table.html" %} {% endwith %}
{% endif %} {% if bundle.deserialization_error %}

Cause

{{ bundle.deserialization_error.error_message }}

Deserialization failure traceback

{% stylize "pytb" %}{{ bundle.deserialization_error.traceback|safe }}{% endstylize %}
{% endif %}
{% endblock %}