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

Waiting for observation...

id: {{ observation_id }}

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

{% endif %}
{% endblock %}