2019-05-20 06:25:17 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
import erpnext.education.utils as utils
|
|
|
|
import frappe
|
|
|
|
|
|
|
|
no_cache = 1
|
|
|
|
|
|
|
|
def get_context(context):
|
|
|
|
context.education_settings = frappe.get_single("Education Settings")
|
|
|
|
course = frappe.get_doc('Course', frappe.form_dict['name'])
|
2019-05-30 11:07:15 +00:00
|
|
|
context.program = frappe.form_dict['program']
|
2019-05-20 06:25:17 +00:00
|
|
|
context.course = course
|
2019-05-30 11:07:15 +00:00
|
|
|
context.topics = course.get_topics()
|
|
|
|
context.has_access = utils.allowed_program_access(context.program)
|