diff --git a/recruitment/__pycache__/models.cpython-312.pyc b/recruitment/__pycache__/models.cpython-312.pyc index 0cf83a9..8546972 100644 Binary files a/recruitment/__pycache__/models.cpython-312.pyc and b/recruitment/__pycache__/models.cpython-312.pyc differ diff --git a/recruitment/__pycache__/urls.cpython-312.pyc b/recruitment/__pycache__/urls.cpython-312.pyc index 76969dc..68d94c0 100644 Binary files a/recruitment/__pycache__/urls.cpython-312.pyc and b/recruitment/__pycache__/urls.cpython-312.pyc differ diff --git a/recruitment/urls.py b/recruitment/urls.py index 4f24bbb..b981ed8 100644 --- a/recruitment/urls.py +++ b/recruitment/urls.py @@ -13,6 +13,7 @@ urlpatterns = [ # path('jobs//delete/', views., name='job_delete'), path('jobs//', views.job_detail, name='job_detail'), path('jobs//candidate/', views.job_detail_candidate, name='job_detail_candidate'), + path('jobs//candidate/application/success', views.application_sucess, name='application_success'), # LinkedIn Integration URLs path('jobs//post-to-linkedin/', views.post_to_linkedin, name='post_to_linkedin'), @@ -29,6 +30,7 @@ urlpatterns = [ path('candidates//delete/', views_frontend.CandidateDeleteView.as_view(), name='candidate_delete'), path('candidate//view/', views_frontend.candidate_detail, name='candidate_detail'), path('candidate//update-stage/', views_frontend.candidate_update_stage, name='candidate_update_stage'), + # Training URLs path('training/', views_frontend.TrainingListView.as_view(), name='training_list'), diff --git a/templates/jobs/application_success.html b/templates/jobs/application_success.html new file mode 100644 index 0000000..c58696c --- /dev/null +++ b/templates/jobs/application_success.html @@ -0,0 +1,201 @@ +{% load static i18n %} + + + + + + {% translate "Application Submitted - Thank You" %} + + + + + + + + + + +
+
+ +
+
+
+ + {# SUCCESS ICON #} +
+ + + +
+ +

{% translate "Thank You!" %}

+

{% translate "Your application has been submitted successfully" %}

+ + {# JOB INFO BLOCK #} +
+

{% translate "Position" %}: {{ job.title }}

+

{% translate "Job ID" %}: {{ job.internal_job_id }}

+

{% translate "Department" %}: {{ job.department|default:"Not specified" }}

+ {% if job.application_deadline %} +

{% translate "Application Deadline" %}: {{ job.application_deadline|date:"F j, Y" }}

+ {% endif %} +
+ +

+ {% translate "We appreciate your interest in joining our team. Our hiring team will review your application and contact you if there's a potential match for this position." %} +

+ +
+ + {% translate "Return to Job Listings" %} + + {# You can add a link to view the saved application here if applicable #} + {% comment %} View Job Details {% endcomment %} +
+
+
+
+ +
+
+ + + + \ No newline at end of file