Files
lms/school/www/jobs/index.py
2022-02-14 13:46:02 +05:30

17 lines
576 B
Python

import frappe
def get_context(context):
context.jobs = frappe.get_all("Job Opportunity",
{
"status": "Open",
"disabled": False
},
[
"job_title", "location", "type", "company_name",
"company_logo", "name", "creation"
],
order_by="creation desc")
context.title = frappe.db.get_single_value("Job Settings", "title")
context.subtitle = frappe.db.get_single_value("Job Settings", "subtitle")
context.allow_posting = frappe.db.get_single_value("Job Settings", "allow_posting")