{% extends "base.html" %} {% block title %}{{ page_title }} ยท {{ app_title }}{% endblock %} {% block content %} {% include "components/page_header.html" %}
{% include "components/product_console_state.html" %} {% if has_layout %}
{% for block in layout_blocks %}
{% include "components/layout_block.html" %}
{% endfor %}
{% else %}

Run payload

{% if run %}
{{ run | tojson(indent=2) }}
{% else %}
No run payload available.
{% endif %}

Artifacts

{% if artifacts %} {% for artifact in artifacts %} {% endfor %}
Artifact ID Content Type
{{ artifact.artifact_id }} {{ artifact.content_type }} Open
{% else %}
No artifacts available.
{% endif %}
{% endif %}
{% endblock %}