{% extends "base.html" %} {% block title %}Subjective Questions Manager{% endblock %} {% block head %} {% endblock %} {% block content %}

Subjective Questions

Print PDF Generator
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %} {% if subfolders %}
{% for folder in subfolders %} {% endfor %}
{% endif %} {% if grouped_questions %} {% for topic, questions_list in grouped_questions.items() %}
{{ topic }}
{{ questions_list|length }} Questions
{% for q in questions_list %} {% endfor %}
# Question Actions
{{ q.question_number_within_topic }}
{{ q.question_html | safe }}
{% endfor %} {% elif not subfolders %}

No Content

This folder is empty. Generate new questions or create subfolders.

Generate Questions
{% endif %}
{% include 'reorder_modal.html' %} {% endblock %}