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

Manage Questions for {{ assessment.name }}


Bulk Upload Questions

Download the template file, fill it out, and upload it to add questions in bulk.

Download Excel Template

Add New Question Manually

Separate choices with '|' and text from score with ':' (e.g., Yes:1|No:0)

Existing Questions

{% for question in questions %} {% endfor %}
Question Text Type Domain Choices & Scores Actions
{{ question.text }} {{ question.question_type }} {{ question.domain if question.domain else 'N/A' }} {% for choice in question.choices %} {{ choice.text }}:{{ choice.weightage }}{% if not loop.last %}|{% endif %} {% else %} N/A {% endfor %} Manage Choices Edit Delete
{% endblock %} {% block scripts %} {% endblock %}