I'd like to be able to have a form wait on workflow completion and use Jinja to output data somewhere on the form. It could be as simple as doing something like:
{% if CTX.completion_result %}
{{ CTX.completion_result %}
{% elseif %}
{{ "In Progress.. Please wait." }}
{% endif %}}
...or even looping through results as they happen.