12 lines
354 B
Python
12 lines
354 B
Python
import frappe
|
|
|
|
|
|
def get_context(context):
|
|
context.no_cache = 1
|
|
batch_name = frappe.form_dict["batch"]
|
|
context.batch_old = frappe.get_doc("LMS Batch Old", batch_name)
|
|
context.already_a_member = context.batch_old.is_member(frappe.session.user)
|
|
context.batch_old.course_title = frappe.db.get_value(
|
|
"LMS Course", context.batch_old.course, "title"
|
|
)
|