8 lines
176 B
Python
8 lines
176 B
Python
import frappe
|
|
|
|
def get_context(context):
|
|
context.no_cache = 1
|
|
context.hackathons = get_hackathons()
|
|
|
|
def get_hackathons():
|
|
return frappe.get_all("Community Hackathon") |