blob: 6051e60aa307d94f5fd626668452bbfb485d887a [file] [log] [blame]
Neil Trini Lasrado3f0a5812016-07-19 14:17:33 +05301# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
2# License: GNU General Public License v3. See license.txt
3
Neil Trini Lasrado3f0a5812016-07-19 14:17:33 +05304
Chillar Anand915b3432021-09-02 16:44:59 +05305import frappe
Neil Trini Lasrado3f0a5812016-07-19 14:17:33 +05306
7
8def get_context(context):
9 course = frappe.get_doc('Course', frappe.form_dict.course)
10 sidebar_title = course.name
11
12 context.no_cache = 1
13 context.show_sidebar = True
14 course = frappe.get_doc('Course', frappe.form_dict.course)
15 course.has_permission('read')
16 context.doc = course
Neil Trini Lasrado3f0a5812016-07-19 14:17:33 +053017 context.sidebar_title = sidebar_title
Neil Trini Lasrado3f0a5812016-07-19 14:17:33 +053018 context.intro = course.course_intro