{% extends "user.html" %} {% block subtitle %}Hello {{ user.first_name }}, welcome to your dashboard !{% endblock %} {% block css %} {% endblock %} {% block script %} {% endblock %} {% block manage %} {% if cannot_attempt %}

You have not passed the prerequisite & hence you cannot take the quiz.

{% endif %}

List of quizzes availbale for you

{% if not quizzes %}
No active quizzes for you
{% endif %} {% for paper in quizzes %} {% endfor %}
Quiz Pre requisite quiz
{{ paper.quiz.description }}
{% if paper.quiz.prerequisite %} You have to pass {{ paper.quiz.prerequisite.description }} for taking {{ paper.quiz.description }} {% else %} No pre requisites for {{ paper.quiz.description }} {% endif %}

List of quizzes taken by you so far

{% if quizzes_taken %} {% for paper in quizzes_taken %} {% endfor %}
Quiz Result Mraks Obtained Total Marks Percentage
{{ paper.question_paper.quiz.description }} {% if paper.passed %}

Pass

{% else %}

Fail

{% endif %}
{{ paper.marks_obtained }} {{ paper.question_paper.total_marks }} {{ paper.percent }}
{% else %}

You have not taken any quiz yet !!

{% endif %} {% endblock %}