{% block content %}
{% if step == 'select_num_questions' %}
Quiz Selection
Select number of questions:
10
20
30
Start Quiz
Back to Dashboard
{% elif step == 'answer' %}
Answer the Questions
{% for question in questions %}
{{ loop.index }}. {{ question }}
{% endfor %}
Submit
Back
{% elif step == 'results' %}
Results
Final Score: {{ correct_count }} out of {{ questions|length }}
{% 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
{% for topic in recommended_topics[:3] %}
{{ topic }}
{% endfor %}
{% endif %} {% endif %}
{% endblock %}