Merge pull request #4846 from KanchanChauhan/job-applicant

Added feature to allow people to apply for job from website
This commit is contained in:
Rushabh Mehta
2016-02-29 17:22:01 +05:30
7 changed files with 106 additions and 5 deletions

View File

@@ -68,6 +68,13 @@ website_route_rules = [
"doctype": "Delivery Note",
"parents": [{"title": _("Shipments"), "name": "shipments"}]
}
},
{"from_route": "/jobs", "to_route": "Job Opening"},
{"from_route": "/jobs/<path:name>", "to_route": "job_opening",
"defaults": {
"doctype": "Job Opening",
"parents": [{"title": _("Job Opening"), "name": "jobs"}]
}
}
]