{% load crispy_forms_tags %} {% if form.refresh_on_input %} {% if edit_mode == 'form' %}
{{ form|crispy }}
{% endif %} {% endif %}
{% if not accepts_input %}

Warning: this node may not accept the values coming from the previous node.

{% endif %}

Values you can use in this node

{{ incoming_schema.label|default:"Input" }} {% if incoming_schema.description %}

{{ incoming_schema.description }}

{% endif %}
{{ input }}
{{ incoming_schema.value_type.label }}
{% if incoming_schema.fields %}
{% for field in incoming_schema.fields %} {% endfor %}
{% elif incoming_schema.value_type == "none" %}

No values from previous nodes yet.

{% else %}

This value has no nested fields.

{% endif %}

Values this node passes to next nodes

{{ output_schema.label|default:"Output" }} {% if output_schema.description %}

{{ output_schema.description }}

{% endif %} {% if output_schema.value_type != "none" %}
{{ input }}
{% endif %}
{% if output_schema.flow_kind != "normal" %}
{{ output_schema.flow_kind.label }}
{% endif %}
{{ output_schema.value_type.label }}
{% if output_schema.fields %}
{% for field in output_schema.fields %} {% endfor %}
{% elif output_schema.value_type == "none" %}

No values for next nodes yet. Configure this node to calculate them.

{% else %}

This value has no nested fields.

{% endif %}