Files
lms/community/www/conferences/index.py
2021-04-06 18:51:40 +05:30

8 lines
210 B
Python

import frappe
def get_context(context):
context.no_cache = 1
context.conferences = get_conferences()
def get_conferences():
return frappe.get_all("Community Conference", fields=["name", "live_stream_url"])