Skip to content

Commit

Permalink
refactor: Update company_detail.html to include applications in job d…
Browse files Browse the repository at this point in the history
…etails

The company_detail.html template has been updated to include the "applications" object in the job details section. This change allows users to see the application status for a job on the company detail page, enhancing the user experience and providing more relevant information.
  • Loading branch information
QA2A committed Sep 4, 2024
1 parent d4f1621 commit 81ea273
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/templates/company_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ <h4 style="margin-bottom: 5px; margin-top: 0px;">{{ job.role|default:job.title|d
<!-- Job Details -->
<div id="job-details" style="flex-grow: 1;">
{% if company.job_set.all %}
{% include 'partials/job_detail_include.html' with job=company.job_set.first %}
{% include 'partials/job_detail_include.html' with job=company.job_set.first applications=applications %}
{% endif %}
</div>
</div>
Expand Down

0 comments on commit 81ea273

Please sign in to comment.