13 lines
271 B
Python
13 lines
271 B
Python
import frappe
|
|
|
|
def get_context(context):
|
|
context.no_cache = 1
|
|
context.courses = get_courses()
|
|
|
|
def get_courses():
|
|
courses = frappe.get_all(
|
|
"Community Course",
|
|
fields=['name', 'title', 'description']
|
|
)
|
|
print(courses)
|
|
return courses |