{% extends "manage.html" %} {% block title %} Design Question Paper {% endblock title %} {% block subtitle %} Design Question Paper {% endblock %} {% block css %} {% endblock %} {% block script %} {% endblock %} {% block content %}
{% csrf_token %}
Manual mode to design the {{lang}} Question Paper

Total Marks: {{ qpaper.total_marks }}

Please select Question type and Marks
{{ filter_form.question_type }}
{{ filter_form.marks }}


Select questions to add:

{% if state == "fixed" or state == "None" %}
    {% for question in questions %}
  • {% endfor %}
{% endif %}


Fixed questions currently in paper:

    {% for question in fixed_questions %}
  • {% endfor %}


Select questions to add to the pool:

{% if state == "random" %}
    {% for question in questions %}
  • {% endfor %}
{% endif %}


Pool of questions currently in paper:

    {% for random_set in random_sets %}
  • {% for question in random_set.questions.all %}
  • {% endfor %} {% endfor %}


Almost finished creating your question paper




{% endblock %} {% block manage %} {% endblock %}