{% extends "base.html" %} {% block title %}{{ workflow.name }} — nlght Admin{% endblock %} {% block content %}

Workflows /

{{ workflow.name }}

{% if workflow.description %}

{{ workflow.description }}

{% endif %}
{% if workflow.enabled %}enabled{% else %}disabled{% endif %} {% for cap in workflow.capabilities %}{{ cap }}{% endfor %}

Versions

{% if versions %} {% for v in versions %} {% endfor %}
VersionStatusStepsActions
v{{ v.version }} {% if v.status == 'active' %}active {% else %}{{ v.status }}{% endif %} {{ v.steps | length if v.steps is defined else "—" }} Open {% if v.status != 'active' %}
{% endif %}
{% else %}

No versions yet.

{% endif %} {% endblock %}