{% extends "jobportal/base.html" %} {% block title %}Skill Matches | Job Portal{% endblock %} {% block content %} {% if messages %} {% for message in messages %} {% endfor %} {% endif %}

Skill Matches

{% if profile.user_type == "recruiter" %} Candidates matched with your job posts. {% else %} Jobs matched with your skills set. {% endif %}

{% if profile.user_type == "recruiter" %}
{% for match in matches %} {% empty %} {% endfor %}
Job Candidate Match Skills Resume
{{ match.job.title }} {{ match.seeker.display_name }} {{ match.score }}% {{ match.matched_skills|join:", " }} {% if match.seeker.resume %} View {% else %} Not uploaded {% endif %}
No skill matches found.
{% else %}
{% for match in matches %}

{{ match.job.title }}

{{ match.job.category }}
{{ match.score }}%

{{ match.job.description }}

Matched skills: {{ match.matched_skills|join:", " }}

{% if match.already_applied %} {% else %}
{% csrf_token %}
{% endif %}
{% empty %}
{% endfor %}
{% endif %} {% endblock %}