Task List
{% for id in tasks %}
{{tasks[id].title}}
{% endfor %}
Function List
{% if selected_task %} {% for function in tasks[selected_task].functions %}
{{function.name}}
{% endfor %} {% endif %}
Function Description
{% if selected_task %}
{{tasks[selected_task].functions[selected_function - 1]}}
{% endif %}