Skip to content

Commit

Permalink
refactor: Update skill icon links in job_detail_include.html
Browse files Browse the repository at this point in the history
The skill icon links in the job_detail_include.html template have been updated to include the search_type parameter in the URL. This change ensures that when a user clicks on a skill icon, the search results are filtered by skill. It improves the functionality and user experience of the job detail page.
  • Loading branch information
QA2A committed Sep 8, 2024
1 parent 84f557a commit 3f0395a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/templates/partials/job_detail_include.html
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ <h4 style="margin-top: 0;">Skills:</h4>
id="skills-list">
{% for skill in job.skills.all %}
<div style="display: flex; align-items: center;">
<a href="/?search={{ skill.name }}"
<a href="/?search={{ skill.name }}&search_type=skill"
style="text-decoration: none;
color: #007bff">
<img src="https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/{{ skill.slug }}.png"
Expand Down

0 comments on commit 3f0395a

Please sign in to comment.