{% extends 'index.html' %} {% block content %} {% load static %} {% load i18n %} {% load recruitmentfilters %} {% load onboardingfilters %}
{% include "onboarding/onboarding_view_nav.html" %}
{% if recruitments %}
{% include "onboarding/tabs.html" %}
{% for recruitment in recruitments %} {% for stage in recruitment.stages %} {% if request.user|task_manages:recruitment or request.user|stage_manages:stage or perms.onboarding.view_candidatestage %}
{% if request.user|task_manages:recruitment or perms.onboarding.add_onboardingstage %}
{% endif %}
{% include 'onboarding/onboarding_table.html' %}
{% endif %} {% endfor %} {% endfor %}
{% trans "Page" %} {{ recruitments.number }} {% trans "of" %} {{ recruitments.paginator.num_pages }}.
{% else %} {% if request.GET.closed == 'true' %}
Page not found. 404.
{% trans "At present, There are no closed recruitments." %}
{% else %}
Page not found. 404.
{% trans "At present, There is no ongoing recruitment." %}
{% endif %} {% endif %}
{% endblock content %}