{% extends 'base.html' %} {% block content %}

Manage Feedback Questions

{% if questions %}
{% for q in questions %} {% endfor %}
Question Type Active Options (for MCQ) Actions
{{ q.qtype|capitalize }} {{ 'Yes' if q.is_active else 'No' }} {% if q.qtype in ['single','multi'] %}
    {% for opt in q.options %}
  • {{ opt.label }} ({{ opt.value }})
  • {% endfor %}
{% else %} N/A {% endif %}
{% else %}
No questions yet.
{% endif %}
{% endblock %}