blob: 7eb01351eae3199e909fce5ddbd08cf97fb79ff2 [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
4from __future__ import unicode_literals
Neil Trini Lasrado3f0a5812016-07-19 14:17:33 +05305
Chillar Anand915b3432021-09-02 16:44:59 +05306import frappe
Neil Trini Lasrado3f0a5812016-07-19 14:17:33 +05307
8
9def get_context(context):
10 course = frappe.get_doc('Course', frappe.form_dict.course)
11 sidebar_title = course.name
12
13 context.no_cache = 1
14 context.show_sidebar = True
15 course = frappe.get_doc('Course', frappe.form_dict.course)
16 course.has_permission('read')
17 context.doc = course
Neil Trini Lasrado3f0a5812016-07-19 14:17:33 +053018 context.sidebar_title = sidebar_title
Neil Trini Lasrado3f0a5812016-07-19 14:17:33 +053019 context.intro = course.course_intro