{% from "_nav_bar.html" import nav %} {% from "_macros.html" import breadcrumbs %} {% extends "base.html" %} {% block title %}{% if execution %} {{ execution.name }} {% else %} Waiting for execution... {% endif %}{% endblock %} {% block content %}
{{ nav() }}
{% if execution %}
{{ breadcrumbs([ {"href": "/", "text": "home"}, {"href": "/exe", "text": "executions"}, {"text": execution.name} ]) }}

{{ execution.name }}

id: {{ execution.id }}

created: {{ execution.created_at }}

{% if execution.metadata %}

metadata

    {% for item in execution.metadata | items %}
  • {{ item[0] }}: {{ item[1] }}
  • {% endfor %}
{% endif %}

observations

{% if observations %} {% if view == 'log' %} {% else %}
    {% for obs in observations %}
  • {{ obs.name }} — {{ obs.mime_type }} {% if obs.source %}— {{ obs.source.file }}:{{ obs.source.line }}{% endif %} — {{ obs.created_at }} {% if obs.labels %}
    labels: {{ obs.labels|join(", ") }} {% endif %}
  • {% endfor %}
{% endif %} {% if total_count %}

showing {{ offset + 1 }}-{{ offset + observations|length }} of {{ total_count }} (page {{ page }})

{% endif %} {% else %}

no observations found.

{% endif %}
{% else %}
{{ breadcrumbs([ {"href": "/", "text": "home"}, {"href": "/exe", "text": "executions"}, {"text": "waiting..."} ]) }}

Waiting for execution...

id: {{ execution_id }}

This execution has not been received yet. The page will automatically refresh when data arrives.

{% endif %}
{% if selected_observation %} {% endif %}
{% endblock %}