{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Workflow Automation{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Workflow Automation

{{ ui.button('Automation Command Center', '/automation') }} {{ ui.button('Admin', '/admin') }}
{% for wf in workflows %}
{{ wf.name }}

{{ wf.trigger_type }}

{{ wf.actions_json }}
{% endfor %}

Pending Approvals

{% for approval in approvals %}

{{ approval.approval_type }} {{ approval.created_at }}

{% else %}

No pending approvals.

{% endfor %}
{% endblock %}