feat: job posting

This commit is contained in:
Jannat Patel
2021-12-28 22:26:52 +05:30
parent fcfda68d88
commit b1b8f202c9
22 changed files with 539 additions and 24 deletions

12
school/www/jobs/index.py Normal file
View 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"
])