{% extends "base.html" %} {% block title %}Run {{ run.run_id[:12] }} - Art-DAG L1{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %} {% set status_colors = {'completed': 'green', 'running': 'blue', 'pending': 'yellow', 'failed': 'red'} %} {% set color = status_colors.get(run.status, 'gray') %}
{{ plan_sexp }}
No plan available for this run.
{% endif %}