{% load i18n liveops %}
{% if op.stages %}{% include "liveops/_stages.html" with op=op %}{% endif %}
{% if op.get_state == "FINISHED_OK" %} {% render_op_result op %} {% elif op.get_state == "FINISHED_ERROR" %} {% include "liveops/_error.html" with message=op.traceback %} {% elif op.get_state == "CANCELLED" %} {% include "liveops/_cancelled.html" with op=op %} {% endif %}
{% url 'liveops:cancel' pk=op.pk as cancel_url %} {% if cancel_url and op.get_state != "FINISHED_OK" and op.get_state != "FINISHED_ERROR" and op.get_state != "CANCELLED" %}
{% csrf_token %}
{% endif %} {% url 'liveops:restart' pk=op.pk as restart_url %} {% if restart_url and op.get_state == "FINISHED_ERROR" %}
{% csrf_token %}
{% endif %}