2018-10-08 09:56:05 +00:00
|
|
|
from __future__ import unicode_literals
|
2018-10-16 12:24:18 +00:00
|
|
|
import erpnext.education.utils as utils
|
2018-10-08 09:56:05 +00:00
|
|
|
import frappe
|
|
|
|
|
|
|
|
|
|
|
|
def get_context(context):
|
2018-10-12 09:52:16 +00:00
|
|
|
context.program = frappe.get_doc("Program", frappe.form_dict["program"])
|
2018-10-16 12:24:18 +00:00
|
|
|
context.course_list = utils.get_courses_in_program(frappe.form_dict["program"])
|