feat: job application modal

This commit is contained in:
Jannat Patel
2024-02-19 16:54:07 +05:30
parent 084eeba2ed
commit 36c4e2f4dc
5 changed files with 64 additions and 11 deletions

View File

@@ -21,7 +21,7 @@
"company_website",
"column_break_11",
"company_logo",
"application_link"
"company_email_address"
],
"fields": [
{
@@ -100,23 +100,24 @@
"label": "Company Logo",
"reqd": 1
},
{
"fieldname": "application_link",
"fieldtype": "Data",
"label": "Application Form Link",
"reqd": 1
},
{
"default": "0",
"fieldname": "disabled",
"fieldtype": "Check",
"label": "Disabled"
},
{
"fieldname": "company_email_address",
"fieldtype": "Data",
"label": "Company Email Address",
"options": "Email",
"reqd": 1
}
],
"index_web_pages_for_search": 1,
"links": [],
"make_attachments_public": 1,
"modified": "2024-02-01 23:14:17.444811",
"modified": "2024-02-07 23:02:06.102120",
"modified_by": "Administrator",
"module": "Job",
"name": "Job Opportunity",

View File

@@ -17,7 +17,6 @@ class JobOpportunity(Document):
def validate_urls(self):
frappe.utils.validate_url(self.company_website, True)
frappe.utils.validate_url(self.application_link, True)
@frappe.whitelist()