Files
lms/lms/www/jobs/job.py
2022-11-04 11:47:09 +05:30

11 lines
225 B
Python

import frappe
def get_context(context):
try:
job = frappe.form_dict["job"]
except KeyError:
frappe.local.flags.redirect_location = "/jobs"
raise frappe.Redirect
context.job = frappe.get_doc("Job Opportunity", job)