Squashed 'spiffworkflow-backend/' changes from 9e3112960..9259cb4f0
9259cb4f0 updated backend to send instructions for user tasks through jinja as well w/ burnettk danfunk git-subtree-dir: spiffworkflow-backend git-subtree-split: 9259cb4f0a7bfa2b1b29f8339da3690f468a5ab4
This commit is contained in:
parent
1846179eca
commit
45a0dfbd02
|
@ -1069,8 +1069,9 @@ def task_show(process_instance_id: int, task_id: str) -> flask.wrappers.Response
|
||||||
)
|
)
|
||||||
if ui_form_contents:
|
if ui_form_contents:
|
||||||
task.form_ui_schema = ui_form_contents
|
task.form_ui_schema = ui_form_contents
|
||||||
elif task.type == "Manual Task":
|
|
||||||
if task.properties and task.data:
|
if task.properties and task.data and "instructionsForEndUser" in task.properties:
|
||||||
|
print(f"task.properties['instructionsForEndUser']: {task.properties['instructionsForEndUser']}")
|
||||||
if task.properties["instructionsForEndUser"]:
|
if task.properties["instructionsForEndUser"]:
|
||||||
task.properties["instructionsForEndUser"] = render_jinja_template(
|
task.properties["instructionsForEndUser"] = render_jinja_template(
|
||||||
task.properties["instructionsForEndUser"], task.data
|
task.properties["instructionsForEndUser"], task.data
|
||||||
|
|
Loading…
Reference in New Issue