blob: c80d8e7d2294fe4f1616e8248f7288aa7aa44b60 [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
5import frappe
6
7
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
20