9 lines
256 B
Python
9 lines
256 B
Python
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")
|
|
context.all_programs = utils.get_portal_programs() |