{% extends layout %} {% block content %} {% if job %}

{{ job.status }} {{ job.job_id }} {{ job.kind }}, started by {{ job.actor }} at {{ job.started_at[:19] }} {% if job.finished_at %}, finished {{ job.finished_at[:19] }}{% endif %}

{% if job.error %}

{{ job.error }}

{% endif %} {% if job.result %}

Result: {{ job.result | as_json }}

{% endif %} {% else %}

This job is not in the current console process; its log is below.

{% endif %}
{{ tail.text }}
{% endblock %}