{% block content %}
{% if step == 'select_num_questions' %}
Quiz Selection
{% elif step == 'answer' %}
Answer the Questions
{% for question in questions %}
{% endfor %}
{% elif step == 'results' %}

Results

{% for answer, similarity in zip(user_answers, similarity_scores_list) %}

Your Answer: {{ answer }}

Similarity Score: {{ similarity }}

{% endfor %}
Back to Dashboard
{% if recommended_topics %}

Recommended Topics

{% endif %} {% endif %}

{% endblock %}