diff --git a/db.sqlite3 b/db.sqlite3
index 12b96f8..642ba11 100644
Binary files a/db.sqlite3 and b/db.sqlite3 differ
diff --git a/recruitment/__pycache__/views.cpython-312.pyc b/recruitment/__pycache__/views.cpython-312.pyc
index 4d12581..ecdf9e1 100644
Binary files a/recruitment/__pycache__/views.cpython-312.pyc and b/recruitment/__pycache__/views.cpython-312.pyc differ
diff --git a/recruitment/views.py b/recruitment/views.py
index 2e1437b..a974b2c 100644
--- a/recruitment/views.py
+++ b/recruitment/views.py
@@ -747,6 +747,7 @@ def form_builder(request, template_id=None):
template = get_object_or_404(
FormTemplate, id=template_id, created_by=request.user
)
+ context['template']=template
context["template_id"] = template.id
context["template_name"] = template.name
return render(request, "forms/form_builder.html", context)
diff --git a/templates/forms/form_builder.html b/templates/forms/form_builder.html
index 5caea5d..c7f86df 100644
--- a/templates/forms/form_builder.html
+++ b/templates/forms/form_builder.html
@@ -779,10 +779,15 @@
Home
/
+
Jobs
/
+
+ Job:({{template.job.title}})
+ /
+
Form Builder
diff --git a/templates/jobs/job_detail.html b/templates/jobs/job_detail.html
index ab883af..daa9ce7 100644
--- a/templates/jobs/job_detail.html
+++ b/templates/jobs/job_detail.html
@@ -610,7 +610,7 @@
{% trans "Manage Applicants" %}
- {% endcomment %}
+