{% extends "base.html" %} {% block title %}Workflows – Location Management{% endblock %} {% block content %}

Workflows

{% if current_user.is_admin() %} Add Workflow {% endif %}
{% if workflows %}
{% for wf in workflows %} {% endfor %}
Name Trigger Action Status Last Triggered
{{ wf.name }} {{ wf.trigger_board.name }} Input {{ wf.trigger_input }} {{ wf.trigger_event }} {{ wf.action_board.name }} Relay {{ wf.action_relay }} {{ wf.action_type }} {% if wf.is_enabled %}Enabled{% else %}Disabled{% endif %} {% if wf.last_triggered %}{{ wf.last_triggered.strftime('%Y-%m-%d %H:%M') }}{% else %}Never{% endif %} {% if current_user.is_admin() %}
{% endif %}
{% else %}

No workflows yet.

{% if current_user.is_admin() %} Create Workflow {% endif %}
{% endif %} {% endblock %}