{% extends 'base.html' %} {% macro process_with_children(node, indent) %} {% for i in range(indent) %}+{%endfor %} {{node.process.title.newest|e}} {% for child in node.children.values() %} {{ process_with_children(child, indent+1) }} {% endfor %} {% endmacro %} {% block content %}

Process

title: description: default effort: {% for child in children.values() %} {{ process_with_children(child, 0) }} {% endfor %}
add child: {% for candidate in candidates %} {% endfor %}
{% endblock %}