Files
lms/school/www/jobs/index.py
2021-12-28 22:26:52 +05:30

13 lines
266 B
Python

import frappe
def get_context(context):
context.jobs = frappe.get_all("Job Opportunity",
{
"status": "Approved"
},
[
"job_title", "location", "type", "company_name",
"company_logo", "name"
])