2021-10-15 20:47:23 +05:30
|
|
|
BRANCH_CHOICES = [
|
|
|
|
["CSE", "CSE"],
|
|
|
|
["EE", "EE"],
|
2021-12-03 01:04:49 +05:30
|
|
|
["ME", "ME"],
|
|
|
|
['EP', 'EP'],
|
|
|
|
]
|
|
|
|
BRANCHES = [
|
|
|
|
"CSE",
|
|
|
|
"EE",
|
|
|
|
"ME",
|
|
|
|
"EP"
|
2021-10-15 20:47:23 +05:30
|
|
|
]
|
|
|
|
BATCH_CHOICES = [
|
2021-12-03 01:04:49 +05:30
|
|
|
["2021", "2021"],
|
|
|
|
["2020", "2020"],
|
|
|
|
["2019", "2019"],
|
|
|
|
["2018", "2018"]
|
2021-10-15 20:47:23 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
OFFER_CITY_TYPE = [
|
|
|
|
['Domestic', 'Domestic'],
|
|
|
|
['International', 'International']
|
|
|
|
]
|
|
|
|
|
|
|
|
TIERS = [
|
|
|
|
['psu', 'PSU'],
|
|
|
|
['1', 'Tier 1'],
|
|
|
|
['2', 'Tier 2'],
|
|
|
|
['3', 'Tier 3'],
|
|
|
|
['4', 'Tier 4'],
|
|
|
|
['5', 'Tier 5'],
|
|
|
|
['6', 'Tier 6']
|
|
|
|
]
|
|
|
|
|
2021-12-03 01:04:49 +05:30
|
|
|
TOTAL_BRANCHES = 4 # Total No of Branches
|
2021-10-15 20:47:23 +05:30
|
|
|
TOTAL_BATCHES = 4 # Total No of Batches
|
|
|
|
|
2021-12-03 01:04:49 +05:30
|
|
|
# To be Configured Properly
|
2021-10-15 20:47:23 +05:30
|
|
|
CLIENT_ID = "956830229554-290mirc16pdhd5j7ph7v7ukibo4t1qcp.apps.googleusercontent.com" # Google Login Client ID
|
|
|
|
|
2021-12-03 01:04:49 +05:30
|
|
|
# To be Configured Properly
|
2021-12-17 17:15:56 +05:30
|
|
|
PLACEMENT_OPENING_URL = "https://www.googleapis.com/auth/adwords/{id}" # On frontend, this is the URL to be opened
|
2021-12-03 01:04:49 +05:30
|
|
|
LINK_TO_STORAGE_COMPANY_ATTACHMENT = "https://storage.googleapis.com/cdc-backend-attachments/company_attachments/"
|
|
|
|
LINK_TO_STORAGE_RESUME = "https://storage.googleapis.com/cdc-backend-attachments/resume/"
|
2021-12-12 19:14:27 +05:30
|
|
|
LINK_TO_APPLICATIONS_CSV = "https://storage.googleapis.com/cdc-backend-attachments/applications-csv/"
|
2021-12-17 17:15:56 +05:30
|
|
|
LINK_TO_EMAIl_VERIFICATION_API = "https://api.sendgrid.com/v3/mail/send?token={token}"
|
2021-12-03 01:04:49 +05:30
|
|
|
|
2021-10-15 20:47:23 +05:30
|
|
|
EMAIL = "email"
|
|
|
|
|
|
|
|
STUDENT = 'student'
|
2021-12-03 01:04:49 +05:30
|
|
|
ADMIN = 'admin'
|
2021-10-15 20:47:23 +05:30
|
|
|
COMPANY = ''
|
2021-10-22 20:37:15 +05:30
|
|
|
|
2021-12-03 01:04:49 +05:30
|
|
|
# To be Configured Properly
|
|
|
|
FOURTH_YEAR = '2018'
|
|
|
|
MAX_OFFERS_PER_STUDENT = 2
|
2021-12-17 17:15:56 +05:30
|
|
|
EMAIL_VERIFICATION_TOKEN_TTL = 48 # in hours
|
2021-12-03 01:04:49 +05:30
|
|
|
|
|
|
|
|
|
|
|
STORAGE_DESTINATION_RESUMES = "./Storage/Resumes/"
|
2021-10-15 20:47:23 +05:30
|
|
|
STORAGE_DESTINATION_COMPANY_ATTACHMENTS = './Storage/Company_Attachments/'
|
2021-12-12 19:14:27 +05:30
|
|
|
STORAGE_DESTINATION_APPLICATION_CSV = './Storage/Application_CSV/'
|
|
|
|
|
2021-12-17 17:15:56 +05:30
|
|
|
TOKEN = 'token'
|
2021-10-15 20:47:23 +05:30
|
|
|
RESUME_FILE_NAME = 'resume_file_name'
|
|
|
|
|
|
|
|
APPLICATION_ID = "application_id"
|
2021-10-22 20:37:15 +05:30
|
|
|
OPENING_ID = "opening_id"
|
|
|
|
ADDITIONAL_INFO = "additional_info"
|
2021-10-15 20:47:23 +05:30
|
|
|
|
|
|
|
STATUS_ACCEPTING_APPLICATIONS = "Accepting Applications"
|
|
|
|
|
|
|
|
PLACEMENT = "Placement"
|
|
|
|
|
2021-12-03 01:04:49 +05:30
|
|
|
COMPANY_NAME = "company_name"
|
|
|
|
ADDRESS = "address"
|
|
|
|
COMPANY_TYPE = "company_type"
|
|
|
|
NATURE_OF_BUSINESS = "nature_of_business"
|
|
|
|
WEBSITE = 'website'
|
|
|
|
COMPANY_DETAILS = "company_details"
|
|
|
|
COMPANY_DETAILS_PDF = "company_details_pdf"
|
|
|
|
IS_COMPANY_DETAILS_PDF = "is_company_details_pdf"
|
|
|
|
COMPANY_DETAILS_PDF_NAMES = "company_details_pdf_names"
|
2021-10-22 20:37:15 +05:30
|
|
|
PHONE_NUMBER = 'phone_number'
|
|
|
|
CONTACT_PERSON_NAME = 'contact_person_name'
|
2021-12-03 01:04:49 +05:30
|
|
|
CITY = 'city'
|
|
|
|
STATE = 'state'
|
|
|
|
COUNTRY = 'country'
|
|
|
|
PINCODE = 'pincode'
|
|
|
|
|
2021-10-15 20:47:23 +05:30
|
|
|
|
2021-10-22 20:37:15 +05:30
|
|
|
DESIGNATION = 'designation'
|
|
|
|
DESCRIPTION = 'description'
|
2021-12-03 01:04:49 +05:30
|
|
|
DESCRIPTION_PDF = 'description_pdf'
|
|
|
|
DESCRIPTION_PDF_NAMES = 'description_pdf_names'
|
|
|
|
IS_DESCRIPTION_PDF = 'is_description_pdf'
|
2021-10-15 20:47:23 +05:30
|
|
|
OPENING_TYPE = 'opening_type'
|
2021-12-03 01:04:49 +05:30
|
|
|
COMPENSATION_CTC = 'compensation_ctc'
|
|
|
|
COMPENSATION_GROSS = 'compensation_gross'
|
|
|
|
COMPENSATION_TAKE_HOME = 'compensation_take_home'
|
|
|
|
COMPENSATION_BONUS = 'compensation_bonus'
|
2021-10-22 20:37:15 +05:30
|
|
|
COMPENSATION_DETAILS = 'compensation_details'
|
2021-12-03 01:04:49 +05:30
|
|
|
COMPENSATION_DETAILS_PDF = 'compensation_details_pdf'
|
|
|
|
COMPENSATION_DETAILS_PDF_NAMES = 'compensation_details_pdf_names'
|
|
|
|
IS_COMPENSATION_DETAILS_PDF = 'is_compensation_details_pdf'
|
2021-10-22 20:37:15 +05:30
|
|
|
ALLOWED_BATCH = 'allowed_batch'
|
|
|
|
ALLOWED_BRANCH = 'allowed_branch'
|
2021-12-03 01:04:49 +05:30
|
|
|
BOND_DETAILS = 'bond_details'
|
|
|
|
SELECTION_PROCEDURE_ROUNDS = 'selection_procedure_rounds'
|
|
|
|
SELECTION_PROCEDURE_DETAILS = 'selection_procedure_details'
|
|
|
|
SELECTION_PROCEDURE_DETAILS_PDF = 'selection_procedure_details_pdf'
|
|
|
|
SELECTION_PROCEDURE_DETAILS_PDF_NAMES = 'selection_procedure_details_pdf_names'
|
|
|
|
IS_SELECTION_PROCEDURE_DETAILS_PDF = 'is_selection_procedure_details_pdf'
|
|
|
|
TENTATIVE_DATE_OF_JOINING = 'tentative_date_of_joining'
|
|
|
|
TENTATIVE_NO_OF_OFFERS = 'tentative_no_of_offers'
|
|
|
|
OTHER_REQUIREMENTS = 'other_requirements'
|
|
|
|
DEADLINE_DATETIME = 'deadline_datetime'
|
|
|
|
OFFER_ACCEPTED = 'offer_accepted'
|
|
|
|
EMAIL_VERIFIED = 'email_verified'
|
2022-04-10 23:12:02 +05:30
|
|
|
RECAPTCHA_VALUE = 'recaptchakey'
|
2021-10-22 20:37:15 +05:30
|
|
|
|
|
|
|
STUDENT_LIST = "student_list"
|
2021-12-03 01:04:49 +05:30
|
|
|
STUDENT_ID = "student_id"
|
|
|
|
STUDENT_SELECTED = "student_selected"
|
|
|
|
|
|
|
|
|
2021-12-17 17:15:56 +05:30
|
|
|
COMPANY_OPENING_SUBMITTED_TEMPLATE_SUBJECT = "Notification Submitted - {id} - Career Development Cell, IIT Dharwad"
|
2021-12-03 01:04:49 +05:30
|
|
|
STUDENT_APPLICATION_STATUS_TEMPLATE_SUBJECT = 'Application Status : {company_name} - {id}'
|
|
|
|
STUDENT_APPLICATION_SUBMITTED_TEMPLATE_SUBJECT = 'CDC - Application Submitted - {company_name}'
|
2021-12-17 17:15:56 +05:30
|
|
|
COMPANY_EMAIl_VERIFICATION_TEMPLATE_SUBJECT = 'Email Verification - Career Development Cell, IIT Dharwad'
|
2021-10-15 20:47:23 +05:30
|
|
|
|
|
|
|
STUDENT_APPLICATION_SUBMITTED_TEMPLATE = 'student_application_submitted.html'
|
|
|
|
COMPANY_OPENING_SUBMITTED_TEMPLATE = 'company_opening_submitted.html'
|
2021-12-03 01:04:49 +05:30
|
|
|
STUDENT_APPLICATION_STATUS_SELECTED_TEMPLATE = 'student_application_status_selected.html'
|
|
|
|
STUDENT_APPLICATION_STATUS_NOT_SELECTED_TEMPLATE = 'student_application_status_not_selected.html'
|
2021-12-17 17:15:56 +05:30
|
|
|
COMPANY_EMAIL_VERIFICATION_TEMPLATE = 'company_email_verification.html'
|
2021-12-03 01:04:49 +05:30
|
|
|
|
2021-12-12 19:14:27 +05:30
|
|
|
APPLICATION_CSV_COL_NAMES = ['Applied At', 'Roll No.', 'Name', 'Email', 'Phone Number', 'Branch', 'Batch', 'CPI',
|
|
|
|
'Resume', 'Selected', ]
|