Files
lms/community/www/hackathons/index.py
2021-02-16 19:40:55 +05:30

8 lines
204 B
Python

import frappe
def get_context(context):
context.no_cache = 1
context.hackathons = get_hackathons()
def get_hackathons():
return frappe.get_all("Community Event", filters={"is_hackathon": True})