feat: hackathon and project web view

This commit is contained in:
pateljannat
2021-02-16 19:40:55 +05:30
parent 1d2bf00782
commit 72135d7a73
14 changed files with 482 additions and 6 deletions

View File

@@ -0,0 +1,8 @@
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})