{% load i18n %} {% load static %} {% load recruitmentfilters %} {{white_label_company_name}}{% trans " - Open Recruitments" %}
{% if request.user.is_authenticated %}
{% if request.path not in request.META.HTTP_REFERER %} {% else %} {% endif %}
{% endif %}

{% trans "Open Job Listings" %}

{% trans "We're hiring! Join our team and be part of a vibrant workplace where your talents make a difference. Here are the open Recruitments...." %}

{% for recruitment in recruitments %}

{{recruitment.company_id}}

{{recruitment.created_at|timesince}}
{% for job_position in recruitment.open_positions.all %}
{{job_position.job_position}}
{% endfor %}
{{recruitment.title}}
{% if perms.recruitment.view_recruitment %}
{{recruitment.candidate.all|length}} {% trans "Applied" %} {% trans "of" %} {{recruitment.vacancy}} {% trans "Capacity" %} {% else %}
{{recruitment.start_date}} - {{recruitment.end_date}}
{% if recruitment.vacancy %} {% trans "Total vacancies" %} {{recruitment.vacancy}} {% endif %}
{% endif %}
{% endfor %}