{% extends "dashboard_app/_content.html" %} {% load humanize %} {% load i18n %} {% load stylize %} {% block extrahead %} {{ block.super }} {% 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.get %}

Cause

{{ bundle.deserialization_error.get.error_message }}

Deserialization failure traceback

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