{% extends 'base.html' %} {% macro render_node_tree(node) %} {% if node %} {% endif %} {% endmacro %} {% block content %}
Decision Tree Visualization

                    
Edit Node
This content will be shown to the user when they reach this node.
{% if node.images %}
Current Images
{% for image in node.images|sort(attribute='display_order') %}
Node image
{% if image.caption %}

{{ image.caption }}

{% endif %}
Order
{% endfor %}
{% endif %}
Upload New Image
Enter a YouTube video URL to embed in this node.
{% if node.youtube_embed_url %}
{% else %}
{% endif %}
Check this if this node is an endpoint (no further questions).
Add 'Yes' Branch
{% if node.yes_node %}

Already has a 'Yes' branch:

Edit 'Yes' Node {% else %}
{% endif %}
Add 'No' Branch
{% if node.no_node %}

Already has a 'No' branch:

Edit 'No' Node {% else %}
{% endif %}
{% endblock %}