{% extends "Admin.html" %} {% from "Macros.html" import json_input, modal %} {% block titlearea %}

{% translate %} Session {% endtranslate %} {{ sname }} › {% translate %}Pipelines{% endtranslate %}

{% endblock titlearea %} {% block main3 %} {% for appname in apps %}

{{ appname }}

{% if appname in subhtml %}
{{ subhtml[appname] }}
{% endif %}
{% endfor %} {% call modal(_, "pipeline-data", title=_("Invoke with data"), action_text=_("Run pipeline"), action_handler="uprootRunPipelineWithData()") %}

{{ json_input(_, "pipeline-data-input", _("Pipeline data"), rows=8, help_text=_("Input is evaluated as a JavaScript expression. You can use comments, calculations, variables, etc. The result must be JSON-serializable.")) }} {% endcall %} {% endblock main3 %}