{% extends 'generic/_base.html' %} {% load helpers %} {% load i18n %} {% block title %}{% trans "Workflow Queue" %}{% endblock %} {% block subtitle %}
| {% trans "Name" %} | {% trans "State" %} | {% trans "Current job" %} |
|---|---|---|
{{ w.name }} |
{% if w.state == "idle" %} idle {% elif w.state == "busy" %} busy {% elif w.state == "started" %} started {% elif w.state == "suspended" %} suspended {% else %} {{ w.state }} {% endif %} | {{ w.current_job_id|default:"-" }} |
| {% trans "Job" %} | {% trans "Workflow" %} | {% trans "Status" %} | {% trans "Reporter" %} | {% trans "Queued at" %} | {% trans "Actions" %} |
|---|---|---|---|---|---|
| #{{ j.pk }} | {{ j.workflow.name }} | {% badge j.get_status_display %} | {% if j.created_by %} {% if j.created_by.first_name or j.created_by.last_name %}{{ j.created_by.get_full_name }}{% else %}{{ j.created_by.username }}{% endif %} {% else %}—{% endif %} | {{ j.queued_at|placeholder }} | {% include 'netbox_orchestrator/partials/kill_button.html' with job=j %} |
| {% trans "Queue is idle." %} | |||||
| {% trans "Job" %} | {% trans "Workflow" %} | {% trans "Status" %} | {% trans "Reporter" %} | {% trans "Started" %} | {% trans "Actions" %} |
|---|---|---|---|---|---|
| #{{ j.pk }} | {{ j.workflow.name }} | {% badge j.get_status_display %} | {% if j.created_by %} {% if j.created_by.first_name or j.created_by.last_name %}{{ j.created_by.get_full_name }}{% else %}{{ j.created_by.username }}{% endif %} {% else %}—{% endif %} | {{ j.started_at|placeholder }} | {% include 'netbox_orchestrator/partials/kill_button.html' with job=j %} |
| {% trans "Nothing running." %} | |||||