diff --git a/db.sqlite3 b/db.sqlite3 index f6a402d..feeaaa2 100644 Binary files a/db.sqlite3 and b/db.sqlite3 differ diff --git a/recruitment/__pycache__/models.cpython-312.pyc b/recruitment/__pycache__/models.cpython-312.pyc index c1d4db5..0cf83a9 100644 Binary files a/recruitment/__pycache__/models.cpython-312.pyc and b/recruitment/__pycache__/models.cpython-312.pyc differ diff --git a/recruitment/models.py b/recruitment/models.py index f3645ba..187e0a2 100644 --- a/recruitment/models.py +++ b/recruitment/models.py @@ -130,7 +130,7 @@ class JobPosting(Base): verbose_name_plural = "Job Postings" def __str__(self): - return f"{self.title} - {self.get_status_display()}" + return f"{self.title} - {self.internal_job_id}-{self.get_status_display()}" def get_source(self): return self.source.name if self.source else 'System' diff --git a/templates/jobs/job_detail.html b/templates/jobs/job_detail.html index bef34b2..7acfd11 100644 --- a/templates/jobs/job_detail.html +++ b/templates/jobs/job_detail.html @@ -249,7 +249,7 @@ {# HEADER SECTION #}
-

{{ job.title }}

+

{{job}}

{{ job.get_status_display }} diff --git a/templates/jobs/job_detail_candidate.html b/templates/jobs/job_detail_candidate.html index 3539b08..ae369e4 100644 --- a/templates/jobs/job_detail_candidate.html +++ b/templates/jobs/job_detail_candidate.html @@ -245,7 +245,9 @@
-
+
+ {{job.form_template}} +
{% if job.form_template %} Apply for this Position