9 lines
224 B
Python
9 lines
224 B
Python
from __future__ import unicode_literals
|
|
import frappe
|
|
|
|
def get_context(context):
|
|
context.no_cache = True
|
|
chapter = frappe.get_doc('Chapter', frappe.form_dict.name)
|
|
context.member_deleted = True
|
|
context.chapter = chapter
|