breadcrumb

This commit is contained in:
Faheed 2025-10-13 17:34:32 +03:00
parent 4a728ff752
commit 60fff6f636
5 changed files with 7 additions and 1 deletions

Binary file not shown.

View File

@ -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)

View File

@ -779,10 +779,15 @@
<a href="{% url 'dashboard' %}" style="color: #6c757d !important; text-decoration: none !important;">Home</a>
/
</span>
<span class="me-2">
<a href="{% url 'job_list' %}" style="color: #6c757d !important; text-decoration: none !important;">Jobs</a>
/
</span>
<span class="me-2">
<a href="{% url 'job_detail' template.job.slug %}" style="color: #6c757d !important; text-decoration: none !important;">Job:({{template.job.title}})</a>
/
</span>
<span style="color: #6c757d; font-weight: 600;">Form Builder</span>
</div>
</nav>

View File

@ -610,7 +610,7 @@
</a>
<a href="{% url 'candidate_screening_view' job.slug %}" class="btn btn-main-action">
<i class="fas fa-layer-group"></i> {% trans "Manage Applicants" %}
</a> {% endcomment %}
</a>
</div>
</div>