eec0f7fd6b
* [fix] Chapter listing and Join and leave chapter issue * [minor] Changes in chapter html, chapter title to chapter name
8 lines
184 B
Python
8 lines
184 B
Python
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
|