Answer only if {% for dep in question.dependencies %} {% set info =
form.question_id_to_info.get(dep.depends_on_question_id | string) %} {% if
info %} "{{ dep.expected_answer }}" selected for question {{ info[0] }}: "{{
info[1] }}" {% else %} "{{ dep.expected_answer }}" selected for question {{
dep.depends_on_question_id }} {% endif %} {%- if not loop.last %} AND {% endif
%} {% endfor %}.
{% endif %} {% endmacro %} {% macro render_jump_forward_hint(question, form) %}
{% set next_questions =
form.question_reverse_dependency_map.get(question.id|string) %} {% if
next_questions %} {% for q_code, q in next_questions %} {% for dep in
q.dependencies %} {% if dep.depends_on_question_id == question.id %}
If "{{ dep.expected_answer }}": go to question {{ q_code }}.