{% extends "base.html" %} {% block title %}Vacatures · VacatureRadar{% endblock %} {% block content %}
Resultaten

{{ page_obj.paginator.count }} vacatures gevonden

Lijstweergave
{% for job in jobs %}
{{ job.get_status_display }}{% if job.match_recommendation %}{% if job.match_recommendation == 'strong' %}Sterke match{% elif job.match_recommendation == 'possible' %}Mogelijke match{% elif job.match_recommendation == 'weak' %}Lage match{% else %}Verborgen{% endif %}{% endif %}

{{ job.original_title }}

{{ job.employer_name }}

{% if job.match_score is not None %}
{{ job.match_score|floatformat:0 }}%confidence {{ job.match_confidence|floatformat:2 }}
{% endif %}
{{ job.raw_location|default:"Locatie onbekend" }}{{ job.get_workplace_type_display }}gevonden {{ job.first_seen|date:"d/m/Y" }}{% if job.direct_employer %}Directe werkgever{% endif %}
{% if job.skills_required %}

Herkenbare skills: {{ job.skills_required|slice:":4"|join:", " }}

{% elif job.description_text %}

{{ job.description_text|truncatewords:24 }}

{% endif %}
{% empty %}

Geen vacatures gevonden

Pas de zoekterm of filters aan. Gearchiveerde resultaten verschijnen wanneer je de statusfilter leegmaakt.

{% endfor %}
{% if is_paginated %}{% endif %} {% endblock %}