{% 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 %}Quiz | Pre requisite quiz | {% for paper in quizzes %}
---|---|
{{ 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 %} |
Quiz | Result | Mraks Obtained | Total Marks | Percentage | {% for paper in quizzes_taken %}
---|---|---|---|---|
{{ paper.question_paper.quiz.description }} |
{% if paper.passed %}
Pass {% else %}Fail {% endif %} |
{{ paper.marks_obtained }} | {{ paper.question_paper.total_marks }} | {{ paper.percent }} |
You have not taken any quiz yet !!
{% endif %} {% endblock %}