{% extends "base.html" %} {% block title %}Workflows{% endblock %} {% block main %}

Workflows

Run hospital workflows against the local store, a peer over REST (rest:<peer>) or locally while messaging the peer (messaging:<peer>). References accept an id or Type/id.

{% for group, items in groups.items() %}

{{ group|upper }}

{% for w in items %}
{{ w.title }} {{ w.key }} {% if w.description %}

{{ w.description }}

{% endif %}
{% for p in w.params %} {% set val = prefill.get(p.name) if selected == w.key and prefill.get(p.name) else (p.default if p.default is not none else '') %} {% if p.kind == 'bool' %} {% elif p.kind == 'choice' %} {% else %} {% endif %} {% endfor %}

running…

{% endfor %}
{% endfor %}
{% endblock %}