{% extends "base.html" %} {% block title %}{{ collection.name or 'Collection' }}{% endblock %} {% block head %} {% endblock %} {% block content %}

{{ collection.name or 'Untitled Collection' }}

{{ question_count }} questions {% if collection.subject %} {{ collection.subject }} {% endif %} {% if collection.tags %} {{ collection.tags }} {% endif %}

{% if question_count > 0 %} {% endif %} Back
{% if topics %} {% for topic, questions_list in topics.items() %}
{{ topic }} {{ questions_list|length }}
{% for q in questions_list %}
#{{ loop.index }} {% if q.correct_answer_index is not none %} Answer: {{ 'ABCDEFGH'[q.correct_answer_index|int] if q.correct_answer_index|int < 8 else q.correct_answer_index }} {% endif %}
{% if q.image_filename %}
Question
{% else %}
{{ q.question_text or 'No question text available' }}
{% endif %} {% if q.options %}
    {% for opt in q.options|from_json %}
  1. {{ opt }}
  2. {% endfor %}
{% endif %}
{% if q.level %} {{ q.level }} {% endif %} {{ q.subject or 'Unknown' }} {{ q.question_type }} {% if q.question_number %} Q{{ q.question_number }} {% endif %}
{% endfor %}
{% endfor %} {% else %}

No Questions Yet

Questions you bookmark during quizzes will appear here.

Start a Quiz
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}