{% extends "base.html" %}
{% load i18n %}
{% block page_title %}
Pinball - Schedule
{% endblock %}
{% block javascript %}
{% endblock %}
{% block schedules_active %}
class="active"
{% endblock %}
{% block breadcrumb %}
- {{ request.GET.workflow }}
-
Action
{% endblock breadcrumb %}
{% block modal %}
{% include 'modal.html' with modal_id='modal-unschedule' command='unschedule' title='Unschedule' context='&workflow='|add:request.GET.workflow description='Remove workflow '|add:request.GET.workflow|add:' from schedule'|safe %}
{% include 'modal.html' with modal_id='modal-start' command='start' title='Start' context='&workflow='|add:request.GET.workflow description='Start a new instance of workflow '|add:request.GET.workflow|add:''|safe %}
{% include 'modal.html' with modal_id='modal-poison' title='Poison' onclick='poison()' description='Poison workflow '|add:request.GET.workflow|add:' roots '|safe %}
{% endblock modal %}
{% block content %}
workflow graph
jobs list
Workflow | {{ request.GET.workflow }} |
Next run time | {{ next_run_time }} |
Recurrence |
{{ recurrence_seconds }} |
Overrun policy |
{{ overrun_policy }}
|
Notification email(s) | {{ emails }} |
jobs list
{% include 'svg.html' %}
{% endblock %}