{% extends 'mini_kaggle/basic.html' %} {% load static %} {% block head %} {% endblock %} {% block title %}Workflows{% endblock %} {% block body %} {% if workflows %}

Workflows


{% for workflow in workflows reversed %} {% if workflow.workflowexecution_set.last %} {% else %} {% endif %} {% endfor %}
Name Creator Last run status Last run time Active runs Actions
{{ workflow.name }} {{ workflow.creator.username }} {% with workflow_execution_status=status|get_value:workflow.workflowexecution_set.last.status %}
{% endwith %}
{{ workflow.workflowexecution_set.last.created_at }}N/A N/A{{ workflow.get_active_executions_count }}
{% csrf_token %}
{% if workflow.schedule %}
{% csrf_token %} {% if workflow.schedule.paused %}OFF{% else %}ON{% endif %}
{% endif %}

{% include 'mini_kaggle/pagination.html' %} {% else %}

No workflows available.

{% endif %}
Add new workflow
{% endblock %}