Quiz: Quiz now displays correctly on the portal
Co-authored-by: Chinmay Pai <chinmaydpai@gmail.com>
This commit is contained in:
parent
3757a4eab8
commit
685584bf56
@ -4,7 +4,7 @@
|
|||||||
"allow_guest_to_view": 0,
|
"allow_guest_to_view": 0,
|
||||||
"allow_import": 0,
|
"allow_import": 0,
|
||||||
"allow_rename": 0,
|
"allow_rename": 0,
|
||||||
"autoname": "format:{question}",
|
"autoname": "format:QUESTION-{#####}",
|
||||||
"beta": 0,
|
"beta": 0,
|
||||||
"creation": "2018-10-01 15:58:00.696815",
|
"creation": "2018-10-01 15:58:00.696815",
|
||||||
"custom": 0,
|
"custom": 0,
|
||||||
@ -91,7 +91,7 @@
|
|||||||
"issingle": 0,
|
"issingle": 0,
|
||||||
"istable": 0,
|
"istable": 0,
|
||||||
"max_attachments": 0,
|
"max_attachments": 0,
|
||||||
"modified": "2018-10-15 14:39:40.576374",
|
"modified": "2018-10-17 12:08:05.649254",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Education",
|
"module": "Education",
|
||||||
"name": "Question",
|
"name": "Question",
|
||||||
|
@ -200,6 +200,16 @@ def get_student_id(email):
|
|||||||
frappe.throw("Student Account with email:{0} does not exist".format(email))
|
frappe.throw("Student Account with email:{0} does not exist".format(email))
|
||||||
|
|
||||||
def get_quiz(content):
|
def get_quiz(content):
|
||||||
|
try:
|
||||||
|
quiz_doc = frappe.get_doc("Content", content)
|
||||||
|
if quiz_doc.content_type != "Quiz":
|
||||||
|
frappe.throw("<b>{0}</b> is not a Quiz".format(content))
|
||||||
|
quiz = [frappe.get_doc("Question", item.question_link) for item in quiz_doc.questions]
|
||||||
|
return quiz
|
||||||
|
except frappe.DoesNotExistError:
|
||||||
|
frappe.throw("The quiz \"{0}\" does not exist".format(content))
|
||||||
|
|
||||||
|
def get_quiz_as_dict(content):
|
||||||
"""Helper Function to get questions for a quiz
|
"""Helper Function to get questions for a quiz
|
||||||
|
|
||||||
:params content: name of a Content doctype with content_type quiz"""
|
:params content: name of a Content doctype with content_type quiz"""
|
||||||
@ -213,8 +223,9 @@ def get_quiz(content):
|
|||||||
data = []
|
data = []
|
||||||
for question in quiz:
|
for question in quiz:
|
||||||
d = {}
|
d = {}
|
||||||
d['Question'] = question.question
|
d['id'] = question.name
|
||||||
d['Options'] = [item.option for item in quiz[0].options]
|
d['question'] = question.question
|
||||||
|
d['options'] = [item.option for item in quiz[0].options]
|
||||||
data.append(d)
|
data.append(d)
|
||||||
return data
|
return data
|
||||||
except frappe.DoesNotExistError:
|
except frappe.DoesNotExistError:
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div id="content-holder" data-type="{{current_content.content_type}}" data-content="{{ current_content.name }}" data-course="{{ current_course.name }}" data-program="{{ current_program }}">
|
<div id="content-holder" data-type="{{current_content.content_type}}" data-content="{{ current_content.name }}" data-course="{{ current_course.name }}" data-program="{{ current_program }}">
|
||||||
{% with current_content = current_content, next_content = next_content, course_name = current_course.name, program=current_program%}
|
{% with quiz = quiz, current_content = current_content, next_content = next_content, course_name = course_name, program=current_program%}
|
||||||
{% include "www/lms/templates/includes/" + current_content.content_type.lower() + ".html" %}
|
{% include "www/lms/templates/includes/" + current_content.content_type.lower() + ".html" %}
|
||||||
{% endwith %}
|
{% endwith %}
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,18 +1,22 @@
|
|||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
import erpnext.education.utils as utils
|
||||||
import frappe
|
import frappe
|
||||||
|
|
||||||
|
|
||||||
def get_context(context):
|
def get_context(context):
|
||||||
if frappe.form_dict['course']:
|
if frappe.form_dict['course']:
|
||||||
context.current_course = frappe.get_doc("Course", frappe.form_dict["course"])
|
|
||||||
context.current_content = frappe.get_doc("Content", frappe.form_dict["content"])
|
context.current_content = frappe.get_doc("Content", frappe.form_dict["content"])
|
||||||
|
context.course_name = frappe.form_dict["course"]
|
||||||
|
context.current_course = utils.get_contents_in_course(context.course_name)
|
||||||
context.current_program = frappe.form_dict["program"]
|
context.current_program = frappe.form_dict["program"]
|
||||||
context.next_content = get_next_content(context)
|
context.next_content = get_next_content(context)
|
||||||
|
if context.current_content.content_type == "Quiz":
|
||||||
|
context.questions = utils.get_quiz_as_dict(context.current_content.name)
|
||||||
|
|
||||||
|
|
||||||
def get_next_content(context):
|
def get_next_content(context):
|
||||||
if context.current_course:
|
if context.current_course:
|
||||||
course_data = [content_item.content for content_item in context.current_course.course_content]
|
course_data = [content.name for content in context.current_course]
|
||||||
try:
|
try:
|
||||||
return course_data[course_data.index(context.current_content.name) + 1]
|
return course_data[course_data.index(context.current_content.name) + 1]
|
||||||
except IndexError:
|
except IndexError:
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
{% macro quiz(loop_index, question_id, question, options) %}
|
{% macro quiz(loop_index, question) %}
|
||||||
<div class="question mt-4" id="question" data-question="{{ question_id }}">
|
<div class="question mt-4" id="question['question']" data-question="{{ question['id'] }}">
|
||||||
<h5>{{ loop_index }}{{ question }}</h5>
|
<h5>{{ loop_index }}{{ question['question'] }}</h5>
|
||||||
<div class="options ml-2">
|
<div class="options ml-2">
|
||||||
<div class="form-check pb-1 hidden">
|
<div class="form-check pb-1 hidden">
|
||||||
<input class="form-check-input" type="radio" name="{{ question_id }}" value="0" checked>
|
<input class="form-check-input" type="radio" name="{{ question['id'] }}" value="0" checked>
|
||||||
</div>
|
</div>
|
||||||
{% for option in options %}
|
{% for option in question['options'] %}
|
||||||
<div class="form-check pb-1">
|
<div class="form-check pb-1">
|
||||||
<input class="form-check-input" type="radio" name="{{ question_id }}" id="{{loop_index}}-{{ option }}" value="{{ loop.index|str }}">
|
<input class="form-check-input" type="radio" name="{{ question['id'] }}" id="{{loop_index}}-{{ option }}" value="{{ option }}">
|
||||||
<label class="form-check-label" for="{{loop_index}}-{{ option }}">
|
<label class="form-check-label" for="{{loop_index}}-{{ option }}">
|
||||||
{{ option }}
|
{{ option }}
|
||||||
</label>
|
</label>
|
||||||
@ -16,7 +16,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endmacro %}
|
{% endmacro %}
|
||||||
|
|
||||||
<section class="quiz-section">
|
<section class="quiz-section">
|
||||||
<div class='container'>
|
<div class='container'>
|
||||||
<div class="mt-3 row">
|
<div class="mt-3 row">
|
||||||
@ -28,9 +27,8 @@
|
|||||||
<hr>
|
<hr>
|
||||||
<form id="quiz" name="{{ current_content.name }}">
|
<form id="quiz" name="{{ current_content.name }}">
|
||||||
<div id="quiz-body">
|
<div id="quiz-body">
|
||||||
{% for quiz_item in current_content.quiz %}
|
{% for q in questions %}
|
||||||
{{ quiz(loop.index|str +". ", quiz_item.name, quiz_item.question, [ quiz_item.option_1, quiz_item.option_2,
|
{{ quiz(loop.index|str +". ", q) }}
|
||||||
quiz_item.option_3, quiz_item.option_4]) }}
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
<div class="mt-3">
|
<div class="mt-3">
|
||||||
@ -43,12 +41,12 @@
|
|||||||
<h3>Your Score: <span id="result"></span></h3>
|
<h3>Your Score: <span id="result"></span></h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-4 text-right">
|
<div class="col-md-4 text-right">
|
||||||
<a class='btn btn-outline-secondary' href="#">Previous</a>
|
<a class='btn btn-outline-secondary' href="#">Previous</a>
|
||||||
{% if next_content != None %}
|
{% if next_content != None %}
|
||||||
<a class='btn btn-primary' href="/lms/course?program={{ program }}&course={{ course_name }}&content={{ next_content }}">Next</a>
|
<a class='btn btn-primary' href="/lms/course?program={{ program }}&course={{ course_name }}&content={{ next_content }}">Next</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
<a class='btn btn-primary' href="/lms/program?program={{ program }}">Finish Course</a>
|
<a class='btn btn-primary' href="/lms/program?program={{ program }}">Finish Course</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user