{% macro ask_question(question) %} {% if question.hint %}
{% endif %} {% if question.question.image %}
{% endif %}

{{ question.question.question }}

{% if question.type == "multiple_choice" %}
    {% for choice in question.choices %}
  1. {{choice.choice}}
  2. {% endfor %}
{% endif %} {% if question.question.image %}
{% endif %} {% if question.hint %}

Hint: {{question.hint}}

{% endif %} {% endmacro %}