{% extends "layouts/content-bootstrap.html" %} {% load humanize %} {% load i18n %} {% load stylize %} {% load django_tables2 %} {% block styles %} {% include "_tablesort.html" %} {% endblock %} {% block content %}
{% render_table bundle_table %}
{% if bundle.is_deserialized %} {% if sanitized_bundle.did_remove_attachments %}
Note: Inline attachments were removed to make this page more readable.
{% endif %} {% with bundle.get_sanitized_bundle as sanitized_bundle %}
{{ sanitized_bundle.get_human_readable_json|safe }}
{% endwith %} {% endif %} {% if bundle.deserialization_error %}

Cause

{{ bundle.deserialization_error.error_message }}

Deserialization failure traceback

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

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

Export test run data as CSV

{% 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 %}
{% if bundle.testjob.sub_id %}
Parent job id (?)
{{ bundle.testjob.sub_id }}
{% else %}
Job id
{{ bundle.testjob.id }}
{% endif %}
Start time
{{ bundle.testjob.start_time }} ({{ bundle.testjob.start_time|timesince }} ago)
End time
{{ bundle.testjob.end_time }} ({{ bundle.testjob.end_time|timesince }} ago)
{% endif %}
Document format:
{{bundle.get_document_format}}
Serialization format:
{{ bundle.get_serialization_format}}
Declared file name:
{{ bundle.content_filename }}
Content SHA1:
{{ bundle.content_sha1 }}
Content size:
{{ bundle.get_content_size }}

You can download this bundle with the following command:

{% if not bundle.testjob.is_public %} lava-tool get --dashboard-url={{ request.scheme }}://{{ request.user.username }}@{{site.domain}}{% url 'lava.api_handler' %}/ {{bundle.content_sha1}} {% else %} lava-tool get --dashboard-url=http://{{site.domain}}{% url 'lava.api_handler' %} {{bundle.content_sha1}} {% endif %}
{% endblock %} {% block scripts %} {% endblock %}