{% extends "base.html" %} {% load i18n %} {% load extrafilters %} {% comment %} layerindex-web - task page Copyright (C) 2018 Intel Corporation Licensed under the MIT license, see COPYING.MIT for details {% endcomment %} {% block content %} {% autoescape on %}

Task status for {{ update.task_id }} started by {{ update.triggered_by }} on {{ update.started }}{% if update.finished %} (finished in {{ update.started | timesince2:update.finished }}){% endif %}:{% if update.finished %}{% if update.retcode < 0 %}TERMINATED ({{ update.retcode }}){% elif update.retcode %}FAILED{% else %}SUCCEEDED{% endif %}{% endif %}

{{ update.log }}
{% if not update.finished %}
{% endif %} {% if not update.finished %} {% endif %} {% if update.comparisonrecipeupdate_set.exists %}

Updated comparison recipes

{% endif %} {% endautoescape %} {% endblock %} {% block footer %} {% endblock %} {% block scripts %} {% endblock %}