{% include "header.html" %} {% load custom_filters %} {% load static %}

Question Bank

    Add Question       Download Questions

Bulk upload explanation videos
Select all videos in one go. Name each file using the question number shown below, for example 1.mp4, (2).mp4, 3.mov. Videos are compressed one at a time with FFmpeg, uploaded to {{ video_folder }}, and linked automatically in the background. When consecutive questions share the same question tag, upload only the video for the first question; that video is linked to the complete tag group.
{% csrf_token %}
{% for question in Question_list %} {% endfor %}
Question No. Question Tag Section Name Sub-Section Name Topic Name Question Type Difficulty Level Question Paragraph Answer Explaination Options Video File / Status Action
{{ question.video_question_number }}

{{ question.tag|default:"-" }}
{{question.section.section_name}}
{{question.sub_section.sub_section_name}}
{{question.topic.topic_name}}
{{question.question_type}}
{{question.difficulty_level}}
{{question.question|safe}}
{{question.paragraph|safe}}
{{question.explanation|safe}}
{% if question.question_type == 'mcq' %} {% with question.options|json_decode as option %} {% for opt in option %} {% if forloop.counter|stringformat:"s" == question.correct_answer|stringformat:"s" %}
{{ opt|safe }}
{% else %}
{{ opt|safe }}
{% endif %} {% endfor %} {% endwith %} {% else %}
{{ question.correct_answer }}
{% endif %}
{{ question.video_filename }}
{% if question.explanation_video %} Video uploaded
{% else %} Not uploaded {% endif %}
{% include "sidebar.html"%}
{% include "footer.html" %}