feat: job posting
This commit is contained in:
12
school/www/jobs/index.py
Normal file
12
school/www/jobs/index.py
Normal file
@@ -0,0 +1,12 @@
|
||||
import frappe
|
||||
|
||||
def get_context(context):
|
||||
context.jobs = frappe.get_all("Job Opportunity",
|
||||
{
|
||||
"status": "Approved"
|
||||
},
|
||||
[
|
||||
"job_title", "location", "type", "company_name",
|
||||
"company_logo", "name"
|
||||
])
|
||||
|
||||
Reference in New Issue
Block a user