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



{% if set_visible %}
{% if messages %} {% endif %} {% if question_list is None %}
You've Already taken the quiz, please come tomorrow for other questions!
{% else %}
{% csrf_token %}
{{ question_list.0.question | safe }}
{{ question_list.0.option_1 }}
{{ question_list.0.option_2 }}
{{ question_list.0.option_3 }}
{{ question_list.0.option_4 }}



{{ question_list.1.question | safe }}
{{ question_list.1.option_1 }}
{{ question_list.1.option_2 }}
{{ question_list.1.option_3 }}
{{ question_list.1.option_4 }}


{% endif %}
{% else %}

Leaderboard

This is the final leaderboard after addition of online quiz and flowsheeting competition marks

 
Rank Participant NameScore
1   Mehulkumar Sutariya   132
2   Vignesh Candasamy   131
3   Sushruth Nambiath   76
4   Varun Doshi   72
5   Jayram Ganesan   67
6   Swetha Saraswathi   51
7   Prassana R   48
8   Amarnath   35
9   Pranaav   26
10   Akash Subramaniam   26
11   Charan Rajagopal   8
12   Athithyan   3


{% endif %} {% endblock %}